aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/ADT/StringMapTest.cpp
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2017-03-31 10:59:37 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2017-03-31 10:59:37 +0000
commit6bdc75551990d2d299398b655d64364f1bea989d (patch)
treec98f8051e693c1c8a45202e3d191e0df436b0d8d /llvm/unittests/ADT/StringMapTest.cpp
parent5ba3d85ccb355a6c1728767f955ed9ad68fa722c (diff)
downloadllvm-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.cpp2
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);