Remove shadowed names in documentation

This commit is contained in:
Wilko Manger 2023-07-21 13:56:16 +02:00 committed by G. Allais
parent 23694c7e5a
commit 870bc82437

View File

@ -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