Skip to content

Commit d24d514

Browse files
fridewaldlpil
authored andcommitted
fix typo in dict examples
1 parent 0d9983a commit d24d514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gleam/dict.gleam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ fn do_delete(a: k, b: Dict(k, v)) -> Dict(k, v)
419419
///
420420
/// ```gleam
421421
/// from_list([#("a", 0), #("b", 1)]) |> drop(["a"])
422-
/// // -> from_list([#("b", 2)])
422+
/// // -> from_list([#("b", 1)])
423423
/// ```
424424
///
425425
/// ```gleam

0 commit comments

Comments
 (0)