Skip to content

Commit

Permalink
Fix the docs for Fuzz.filterMap
Browse files Browse the repository at this point in the history
  • Loading branch information
Janiczek committed Jan 20, 2024
1 parent d7b5710 commit 9669a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Fuzz.elm
Original file line number Diff line number Diff line change
Expand Up @@ -1357,7 +1357,7 @@ Example usage:
fromChar : Char -> Maybe UnicodeNonLetter
fromChar c =
if (c |> Unicode.isLower |> not) && (c |> Unicode.isUpper |> not) then
UnicodeNonLetter |> Just
Just (UnicodeNonLetter c)
else
Nothing
Expand Down

0 comments on commit 9669a27

Please sign in to comment.