From 2e0e32f4eb06e9fd4d08c1d6be42d1ac47209c98 Mon Sep 17 00:00:00 2001 From: Daniel Carral Date: Fri, 23 Oct 2015 12:37:46 +0200 Subject: [PATCH] Add missing word to TRPL's 'The Heap' section --- src/doc/trpl/the-stack-and-the-heap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/the-stack-and-the-heap.md b/src/doc/trpl/the-stack-and-the-heap.md index f2f9198d3122..f30dacc485aa 100644 --- a/src/doc/trpl/the-stack-and-the-heap.md +++ b/src/doc/trpl/the-stack-and-the-heap.md @@ -224,7 +224,7 @@ like this: | 1 | y | 42 | | 0 | x | → (230) - 1 | -We have (230) - 1 in our hypothetical computer with 1GB of RAM. And since +We have (230) - 1 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 we’ve