Skip to content

Commit 04ff4ad

Browse files
committed
fix expression of extract() of multimap and multiset
1 parent 15d43d1 commit 04ff4ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

reference/map/multimap/extract.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ node_type extract(K&& x); // (3) C++23
1818
指定された要素を`*this`から切り離し、その要素を所有する[ノードハンドル](/reference/node_handle/node_handle.md)を取得する。
1919
2020
- (1) : `position`が指すノードを切り離す
21-
- (2) : `x`と等価なキーをもつノードをすべて切り離す
21+
- (2) : `x`と等価なキーをもつノードを切り離す
2222
- (3) : `key_type`と比較可能な`x`と等価なキーをもつノードをすべて切り離す
2323
2424

reference/set/multiset/extract.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ node_type extract(K&& x); // (3) C++23
1818
指定された要素を`*this`から切り離し、その要素を所有する[ノードハンドル](/reference/node_handle/node_handle.md)を取得する。
1919
2020
- (1) : `position`が指すノードを切り離す
21-
- (2) : `x`と等価なキーをもつノードをすべて切り離す
21+
- (2) : `x`と等価なキーをもつノードを切り離す
2222
- (3) : `key_type`と比較可能な`x`と等価なキーをもつノードをすべて切り離す
2323
2424

0 commit comments

Comments
 (0)