From b6551e8912e722f6e5f49cd529c2c1ecdf5671db Mon Sep 17 00:00:00 2001 From: Changwon Choe Date: Fri, 11 Nov 2016 17:44:48 +0900 Subject: [PATCH] Fixed small typo I think "ms - (k, l, m)" sounds correct, rather than "ms - (k, 1, m)" --- overviews/collections/maps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviews/collections/maps.md b/overviews/collections/maps.md index ad1ed7f590..b213f15c0e 100644 --- a/overviews/collections/maps.md +++ b/overviews/collections/maps.md @@ -36,7 +36,7 @@ The fundamental operations on maps are similar to those on sets. They are summar | `ms updated (k, v)` |Same as `ms + (k -> v)`.| | **Removals:** | | | `ms - k` |The map containing all mappings of `ms` except for any mapping of key `k`.| -| `ms - (k, 1, m)` |The map containing all mappings of `ms` except for any mapping with the given keys.| +| `ms - (k, l, m)` |The map containing all mappings of `ms` except for any mapping with the given keys.| | `ms -- ks` |The map containing all mappings of `ms` except for any mapping with a key in `ks`.| | **Subcollections:** | | | `ms.keys` |An iterable containing each key in `ms`. |