aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gleam/map.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/map.gleam b/src/gleam/map.gleam
index 5877711..6235dff 100644
--- a/src/gleam/map.gleam
+++ b/src/gleam/map.gleam
@@ -276,7 +276,7 @@ if javascript {
/// ## Examples
///
/// ```gleam
-/// > keys(from_list([#("a", 0), #("b", 1)]))
+/// > values(from_list([#("a", 0), #("b", 1)]))
/// [0, 1]
/// ```
///