We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3239b8 commit 7227ea4Copy full SHA for 7227ea4
markdown/source_md/modules.md
@@ -277,7 +277,7 @@ The first list contains everything the resulting list from `takeWhile` would con
277
The second list contains the part of the list that would have been dropped.
278
279
```{.haskell:ghci}
280
-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
281
"First word: This, the rest: is a sentence"
282
```
283
0 commit comments