From 0d579a61fa225851a830437b198a93a49e321b0c Mon Sep 17 00:00:00 2001 From: Yoshinori Kawasaki <48651846+kimonohanger@users.noreply.github.com> Date: Sat, 9 Nov 2019 23:23:21 +0900 Subject: [PATCH] fix typo --- 033-vector-implementation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/033-vector-implementation.md b/033-vector-implementation.md index ca81b58..ebaa527 100644 --- a/033-vector-implementation.md +++ b/033-vector-implementation.md @@ -47,7 +47,7 @@ int main() ## `std::allocator`の概要 -`std::allocator`は`T`型を構築できる生のメモリーを確保するための以下のようになっている。 +`std::allocator`は`T`型を構築できる生のメモリーを確保するために以下のようになっている。 ~~~cpp namespace std {