diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2017-03-31 10:59:37 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2017-03-31 10:59:37 +0000 |
commit | 6bdc75551990d2d299398b655d64364f1bea989d (patch) | |
tree | c98f8051e693c1c8a45202e3d191e0df436b0d8d /llvm/unittests/ADT/StringMapTest.cpp | |
parent | 5ba3d85ccb355a6c1728767f955ed9ad68fa722c (diff) | |
download | llvm-6bdc75551990d2d299398b655d64364f1bea989d.zip llvm-6bdc75551990d2d299398b655d64364f1bea989d.tar.gz llvm-6bdc75551990d2d299398b655d64364f1bea989d.tar.bz2 |
Spelling mistakes in comments. NFCI.
llvm-svn: 299197
Diffstat (limited to 'llvm/unittests/ADT/StringMapTest.cpp')
-rw-r--r-- | llvm/unittests/ADT/StringMapTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/StringMapTest.cpp b/llvm/unittests/ADT/StringMapTest.cpp index d2b1c31..b5c6369 100644 --- a/llvm/unittests/ADT/StringMapTest.cpp +++ b/llvm/unittests/ADT/StringMapTest.cpp @@ -454,7 +454,7 @@ TEST(StringMapCustomTest, InitialSizeTest) { Map.insert(std::pair<std::string, CountCtorCopyAndMove>( std::piecewise_construct, std::forward_as_tuple(Twine(i).str()), std::forward_as_tuple(i))); - // After the inital move, the map will move the Elts in the Entry. + // After the initial move, the map will move the Elts in the Entry. EXPECT_EQ((unsigned)Size * 2, CountCtorCopyAndMove::Move); // We copy once the pair from the Elts vector EXPECT_EQ(0u, CountCtorCopyAndMove::Copy); |