Skip to content

Commit b7c7066

Browse files
Fix typo (#85)
Co-authored-by: Pier-Luc Caron St-Pierre <[email protected]>
1 parent cc4eb42 commit b7c7066

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source_md/modules.md

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

282282
```{.haskell:ghci}
283-
ghci> let (fw, rest) = span (/=' ') "This is a sentence" in "First word:" ++ fw ++ ", the rest:" ++ rest
283+
ghci> let (fw, rest) = span (/=' ') "This is a sentence" in "First word: " ++ fw ++ ", the rest:" ++ rest
284284
"First word: This, the rest: is a sentence"
285285
```
286286

0 commit comments

Comments
 (0)