Skip to content

Commit 7227ea4

Browse files
committed
Fix typo
1 parent f3239b8 commit 7227ea4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

markdown/source_md/modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ The first list contains everything the resulting list from `takeWhile` would con
277277
The second list contains the part of the list that would have been dropped.
278278

279279
```{.haskell:ghci}
280-
ghci> let (fw, rest) = span (/=' ') "This is a sentence" in "First word:" ++ fw ++ ", the rest:" ++ rest
280+
ghci> let (fw, rest) = span (/=' ') "This is a sentence" in "First word: " ++ fw ++ ", the rest:" ++ rest
281281
"First word: This, the rest: is a sentence"
282282
```
283283

0 commit comments

Comments
 (0)