about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-11-30 18:02:21 -0500
committerSteve Klabnik <steve@steveklabnik.com>2015-11-30 18:02:21 -0500
commite4ab0398ffb26df6f1d2902328f2c7d3d3510fe8 (patch)
treed9054be3a9d79baebf0d1bc998b5e76b656996e9
parent7fa4d998dfba222821ef581f51039c5eb785839e (diff)
parent968adb287a21c07b8a760f29c1d6e214d6b3fa92 (diff)
downloadrust-e4ab0398ffb26df6f1d2902328f2c7d3d3510fe8.tar.gz
rust-e4ab0398ffb26df6f1d2902328f2c7d3d3510fe8.zip
Rollup merge of #30108 - bhargavrpatel:master, r=steveklabnik
-rw-r--r--src/doc/book/the-stack-and-the-heap.md2
1 files changed, 1 insertions, 1 deletions
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.