From 87a5882bc2d093e1447f6ff3e247325ada2fc7ef Mon Sep 17 00:00:00 2001 From: Luiz Miguel <120745901+Propfend@users.noreply.github.com> Date: Mon, 20 Jan 2025 13:06:15 -0300 Subject: [PATCH] Update chapter-simple-bump.md fixing verb time. --- booksrc/chapter-simple-bump.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/booksrc/chapter-simple-bump.md b/booksrc/chapter-simple-bump.md index 0a0e3c5..187aa1f 100644 --- a/booksrc/chapter-simple-bump.md +++ b/booksrc/chapter-simple-bump.md @@ -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.