diff --git a/.github/workflows/script/ngword_check.py b/.github/workflows/script/ngword_check.py index 5c65bd41e0..0b709286aa 100644 --- a/.github/workflows/script/ngword_check.py +++ b/.github/workflows/script/ngword_check.py @@ -13,6 +13,7 @@ ("", "protmise_type", "promise_type"), ("", "repear", "repeat"), ("", "子ルーチン", "コルーチン"), + ("", "移譲", "委譲"), ("reference/chrono", "dulation", "duration"), ("reference/random", "施行", "試行"), ("reference/random", "疑似", "擬似"), diff --git a/reference/queue/priority_queue/op_constructor.md b/reference/queue/priority_queue/op_constructor.md index 12aebaeb36..78e2550c7b 100644 --- a/reference/queue/priority_queue/op_constructor.md +++ b/reference/queue/priority_queue/op_constructor.md @@ -68,7 +68,7 @@ priority_queue(priority_queue&& que, - (1) : デフォルトコンストラクタ - C++03 : 比較関数と元となるコンテナをコピーして構築する。 - C++11 : 比較関数をコピー、元となるコンテナをムーブして構築する。 - - C++20 : (2)に移譲。 + - C++20 : (2)に委譲。 - (2) : 比較関数のコピーと元となるコンテナをデフォルト構築して構築するコンストラクタ。 - (3) : 比較関数と、元となるコンテナのコピーから構築するコンストラクタ。 - (4) : コピーコンストラクタ