Skip to content

Commit e59a1d3

Browse files
authored
Merge pull request #622 from qwefgh90/patch-1
Fixed small typo
2 parents 299af9b + b6551e8 commit e59a1d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

overviews/collections/maps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The fundamental operations on maps are similar to those on sets. They are summar
3636
| `ms updated (k, v)` |Same as `ms + (k -> v)`.|
3737
| **Removals:** | |
3838
| `ms - k` |The map containing all mappings of `ms` except for any mapping of key `k`.|
39-
| `ms - (k, 1, m)` |The map containing all mappings of `ms` except for any mapping with the given keys.|
39+
| `ms - (k, l, m)` |The map containing all mappings of `ms` except for any mapping with the given keys.|
4040
| `ms -- ks` |The map containing all mappings of `ms` except for any mapping with a key in `ks`.|
4141
| **Subcollections:** | |
4242
| `ms.keys` |An iterable containing each key in `ms`. |

0 commit comments

Comments
 (0)