From 83c838ba4f27bc194ab82b377ce560f528cf3db8 Mon Sep 17 00:00:00 2001 From: scarf Date: Mon, 30 Sep 2024 13:51:27 +0900 Subject: [PATCH] docs: correct to `removed` in `collections-2.13/maps.md` context: https://discord.com/channels/632150470000902164/632150470000902166/1290120539582500936 --- _overviews/collections-2.13/maps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_overviews/collections-2.13/maps.md b/_overviews/collections-2.13/maps.md index 0d11c535a8..34d9696f19 100644 --- a/_overviews/collections-2.13/maps.md +++ b/_overviews/collections-2.13/maps.md @@ -51,8 +51,8 @@ Immutable maps support in addition operations to add and remove mappings by retu | **Additions and Updates:**| | | `ms.updated(k, v)`
or `ms + (k -> v)` |The map containing all mappings of `ms` as well as the mapping `k -> v` from key `k` to value `v`.| | **Removals:** | | -| `ms.remove(k)`
or `ms - k` |The map containing all mappings of `ms` except for any mapping of key `k`.| -| `ms.removeAll(ks)`
or `ms -- ks` |The map containing all mappings of `ms` except for any mapping with a key in `ks`.| +| `ms.removed(k)`
or `ms - k` |The map containing all mappings of `ms` except for any mapping of key `k`.| +| `ms.removedAll(ks)`
or `ms -- ks` |The map containing all mappings of `ms` except for any mapping with a key in `ks`.| Mutable maps support in addition the operations summarized in the following table.