Update FBVector.md
authorEd Baunton <edbaunton@gmail.com>
Wed, 10 Jun 2015 21:24:55 +0000 (14:24 -0700)
committerSara Golemon <sgolemon@fb.com>
Wed, 10 Jun 2015 21:37:23 +0000 (14:37 -0700)
Summary: Minor typo when referencing `std::allocator`
Closes #84

Reviewed By: @yfeldblum

Differential Revision: D2144830

Pulled By: @sgolemon

folly/docs/FBVector.md

index 0975819b427675c4e22c943ed29bcb26a0b0973b..21edbe8f378c7ab86cca89a9c44aff8b99283ed6 100644 (file)
@@ -128,7 +128,7 @@ the now notorious design of `realloc()` to opaquely perform
 either in-place reallocation or an allocate-memcpy-deallocate
 cycle. Such lack of control subsequently forced all clib-based
 allocator designs to avoid in-place reallocation, and that
-includes C++'s `new` and `std:allocator`. This is a major loss of
+includes C++'s `new` and `std::allocator`. This is a major loss of
 efficiency because an in-place reallocation, being very cheap,
 may mean a much less aggressive growth strategy. In turn that
 means less slack memory and faster reallocations.