Skip to content

Commit 3c78a47

Browse files
fix typo
1 parent 3f28437 commit 3c78a47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libc/src/__support/blockstore.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,9 @@ class BlockStore {
189189
return Iterator(current, fill_count);
190190
}
191191

192-
// Removes and the element at pos, then moves all the objects after back by
193-
// one to fill the hole. It's assumed that pos is a valid iterator to
194-
// somewhere in this block_store.
192+
// Removes the element at pos, then moves all the objects after back by one to
193+
// fill the hole. It's assumed that pos is a valid iterator to somewhere in
194+
// this block_store.
195195
LIBC_INLINE void erase(Iterator pos) {
196196
const Iterator last_item = Iterator(current, fill_count);
197197
if (pos == last_item) {

0 commit comments

Comments
 (0)