Merge "ByteBucketArray.h: fix typo"

This commit is contained in:
Treehugger Robot
2018-09-12 22:26:22 +00:00
committed by Gerrit Code Review

View File

@@ -60,7 +60,7 @@ class ByteBucketArray {
}
T& editItemAt(size_t index) {
CHECK(index < size()) << "ByteBucketArray.getOrCreate(index=" << index
CHECK(index < size()) << "ByteBucketArray.editItemAt(index=" << index
<< ") with size=" << size();
uint8_t bucket_index = static_cast<uint8_t>(index) >> 4;