Fix incorrect prelude

This commit is contained in:
Jeroen Engels 2020-10-22 23:11:12 +02:00
parent d532bb9fb3
commit 0bf974b569

View File

@ -4517,13 +4517,16 @@ elmCorePrelude =
, moduleAlias = Nothing , moduleAlias = Nothing
, exposingList = , exposingList =
explicit explicit
[ Exposing.TypeExpose { name = "Char", open = Nothing } [ Exposing.TypeExpose { name = "String", open = Nothing }
] ]
} }
, createFakeImport , createFakeImport
{ moduleName = [ "Char" ] { moduleName = [ "Char" ]
, moduleAlias = Nothing , moduleAlias = Nothing
, exposingList = Nothing , exposingList =
explicit
[ Exposing.TypeExpose { name = "Char", open = Nothing }
]
} }
, createFakeImport , createFakeImport
{ moduleName = [ "Tuple" ] { moduleName = [ "Tuple" ]