diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/list.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/list.gleam b/src/gleam/list.gleam index 351d466..a919d9c 100644 --- a/src/gleam/list.gleam +++ b/src/gleam/list.gleam @@ -213,7 +213,7 @@ fn do_filter_map( } /// Returns a new list containing only the elements from the first list for -/// which the given functions returns `True`. +/// which the given functions returns `Ok(_)`. /// /// ## Examples /// |