We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc4eb42 commit b7c7066Copy full SHA for b7c7066
1 file changed
source_md/modules.md
@@ -280,7 +280,7 @@ The first list contains everything the resulting list from `takeWhile` would con
280
The second list contains the part of the list that would have been dropped.
281
282
```{.haskell:ghci}
283
-ghci> let (fw, rest) = span (/=' ') "This is a sentence" in "First word:" ++ fw ++ ", the rest:" ++ rest
+ghci> let (fw, rest) = span (/=' ') "This is a sentence" in "First word: " ++ fw ++ ", the rest:" ++ rest
284
"First word: This, the rest: is a sentence"
285
```
286
0 commit comments