From 7a93a3a82150e933d254c2dc6563ce512927124e Mon Sep 17 00:00:00 2001 From: Bhargav Patel Date: Sun, 29 Nov 2015 22:18:13 -0500 Subject: [PATCH] Change verbiage in Stack & Heap page Made a small change in the sentence. It seemed confusing to read the word "actual" twice in the sentence; I removed it completely. --- src/doc/book/the-stack-and-the-heap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/the-stack-and-the-heap.md b/src/doc/book/the-stack-and-the-heap.md index 0c78f876aa0..29f87539f71 100644 --- a/src/doc/book/the-stack-and-the-heap.md +++ b/src/doc/book/the-stack-and-the-heap.md @@ -109,7 +109,7 @@ stack frame. It grows upward, the more functions we call. There are some important things we have to take note of here. The numbers 0, 1, and 2 are all solely for illustrative purposes, and bear no relationship to the -actual numbers the computer will actually use. In particular, the series of +address values the computer will use in reality. In particular, the series of addresses are in reality going to be separated by some number of bytes that separate each address, and that separation may even exceed the size of the value being stored.