From a1dc746a0ede43900aff96ad5c05c5dceb36d2ab Mon Sep 17 00:00:00 2001 From: sheeputech <41723156+sheeputech@users.noreply.github.com> Date: Mon, 2 Sep 2019 18:39:14 +0900 Subject: [PATCH] Typo correction MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “constrcut” to “construct” --- 034-vector-memory-allocation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/034-vector-memory-allocation.md b/034-vector-memory-allocation.md index 162372b..1bfbf27 100644 --- a/034-vector-memory-allocation.md +++ b/034-vector-memory-allocation.md @@ -618,7 +618,7 @@ int main() `sz == size()`の場合は、どちらの`if`文の条件にも引っかからないので、何もしない。 -`size(sz, value)`は、追加の引数を取るほか、`construct( iter )`の部分が`constrcut( iter, value )`に変わるだけだ。 +`size(sz, value)`は、追加の引数を取るほか、`construct( iter )`の部分が`construct( iter, value )`に変わるだけだ。 ~~~cpp void resize( size_type sz, const_reference value )