Skip to content

Commit

Permalink
Remove shadowed names in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkomanger authored and gallais committed Jul 21, 2023
1 parent 23694c7 commit 870bc82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/tutorial/typesfuns.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1350,7 +1350,7 @@ character:
splitAt : Char -> String -> (String, String)
splitAt c x = case break (== c) x of
(x, y) => (x, strTail y)
(l, r) => (l, strTail r)
``break`` is a library function which breaks a string into a pair of
strings at the point where the given function returns true. We then
Expand Down

0 comments on commit 870bc82

Please sign in to comment.