Merge pull request #692 from Pascal-So/patch-1

Fix off-by-one error in address description.
This commit is contained in:
Carol (Nichols || Goulding) 2017-05-15 16:02:40 -04:00 committed by GitHub
commit 8eb3ad520f
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ like this:
| 1 | y | 42 |
| 0 | x | → (2<sup>30</sup>) - 1 |
We have (2<sup>30</sup>) - 1 addresses in our hypothetical computer with 1GB of RAM. And since
We have (2<sup>30</sup>) addresses in our hypothetical computer with 1GB 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 weve