From 0cfadfc92c8766984427d2a2dd3a4c0b1e7da205 Mon Sep 17 00:00:00 2001 From: jam Date: Wed, 14 Mar 2018 19:07:08 -0400 Subject: [PATCH] Fix unit abbreviation --- first-edition/src/the-stack-and-the-heap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/first-edition/src/the-stack-and-the-heap.md b/first-edition/src/the-stack-and-the-heap.md index b263aa8e8..7d7c76ef4 100644 --- a/first-edition/src/the-stack-and-the-heap.md +++ b/first-edition/src/the-stack-and-the-heap.md @@ -240,7 +240,7 @@ like this: | 1 | y | 42 | | 0 | x | → (230) - 1 | -We have (230) addresses in our hypothetical computer with 1GB of RAM. And since +We have (230) addresses in our hypothetical computer with 1GiB of RAM. And since our stack grows from zero, the easiest place to allocate memory is from the other end. So our first value is at the highest place in memory. And the value of the struct at `x` has a [raw pointer][rawpointer] to the place we’ve