Spelling fixes.
authorDan Gohman <gohman@apple.com>
Mon, 1 Mar 2010 17:51:02 +0000 (17:51 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 1 Mar 2010 17:51:02 +0000 (17:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97454 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/Support/AllocatorTest.cpp

index 2a01f3a9c484e69d6d53bc9b40f0b16901a9e278..6c0fca90456e706ed7d2001d65a78845e9be3cb5 100644 (file)
@@ -88,7 +88,7 @@ TEST(AllocatorTest, TestOverflow) {
   Alloc.Allocate(4096 - sizeof(MemSlab), 0);
   EXPECT_EQ(1U, Alloc.GetNumSlabs());
 
-  // If we dont't allocate a new slab, then we will have overflowed.
+  // If we don't allocate a new slab, then we will have overflowed.
   Alloc.Allocate(1, 0);
   EXPECT_EQ(2U, Alloc.GetNumSlabs());
 }