Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion booksrc/chapter-simple-bump.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ to point to the space after _that_ object.
In a twist of mathematical convenience, though, it is [more efficient][2] to
bump allocate from a high memory location _downwards_. We will do that.

We will used a fixed power-of-two block size. The benefit of this is that
We will use a fixed power-of-two block size. The benefit of this is that
given a pointer to an object, by zeroing the bits of the pointer that represent
the block size, the result points to the beginning of the block. This will
be useful later when implementing garbage collection.
Expand Down
Loading