Skip to content

Commit a30ebe4

Browse files
authored
Merge pull request #1087 from jfmengels/readme-import-consistency
Make the imports in the prelude consistent
2 parents 3c28a89 + d1f7e13 commit a30ebe4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ import Tuple
2222

2323
import Debug
2424

25-
import Platform exposing ( Program )
26-
import Platform.Cmd as Cmd exposing ( Cmd )
27-
import Platform.Sub as Sub exposing ( Sub )
25+
import Platform exposing (Program)
26+
import Platform.Cmd as Cmd exposing (Cmd)
27+
import Platform.Sub as Sub exposing (Sub)
2828
```
2929

3030
The intention is to include things that are both extremely useful and very unlikely to overlap with anything that anyone will ever write in a library. By keeping the set of default imports relatively small, it also becomes easier to use whatever version of `map` suits your fancy. Finally, it makes it easier to figure out where the heck a function is coming from.

0 commit comments

Comments
 (0)