Index: third_party/WebKit/Source/wtf/PartitionAlloc.cpp |
diff --git a/third_party/WebKit/Source/wtf/PartitionAlloc.cpp b/third_party/WebKit/Source/wtf/PartitionAlloc.cpp |
index 9528fb46f41ede881f8f0e0ff4d0c9c16dcd07d2..b084fdc3387a92a14c405e2667428d2a4bb6d9bd 100644 |
--- a/third_party/WebKit/Source/wtf/PartitionAlloc.cpp |
+++ b/third_party/WebKit/Source/wtf/PartitionAlloc.cpp |
@@ -571,7 +571,7 @@ static ALWAYS_INLINE char* partitionPageAllocAndFillFreelist(PartitionPage* page |
} |
// We always return an object slot -- that's the +1 below. |
- // We do not neccessarily create any new freelist entries, because we cross sub page boundaries frequently for large bucket sizes. |
+ // We do not necessarily create any new freelist entries, because we cross sub page boundaries frequently for large bucket sizes. |
ASSERT(numNewFreelistEntries + 1 <= numSlots); |
numSlots -= (numNewFreelistEntries + 1); |
page->numUnprovisionedSlots = numSlots; |
@@ -756,7 +756,7 @@ static ALWAYS_INLINE void partitionDirectUnmap(PartitionPage* page) |
extent->nextExtent->prevExtent = extent->prevExtent; |
} |
- // Add on the size of the trailing guard page and preceeding partition |
+ // Add on the size of the trailing guard page and preceding partition |
// page. |
unmapSize += kPartitionPageSize + kSystemPageSize; |