about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2015-09-03 21:14:01 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2015-09-03 21:14:03 +0200
commit3525a13fea02169b4a02de722a5201296dc4ac8e (patch)
tree4799e34c9ed340cd6bc5f69a83775058da6fefa6
parent1661947014fc2ecbbb7a30b1604499500dcf767e (diff)
downloadrust-3525a13fea02169b4a02de722a5201296dc4ac8e.tar.gz
rust-3525a13fea02169b4a02de722a5201296dc4ac8e.zip
book: "word" feels more suitable than "name"
Also, add missing comma
-rw-r--r--src/doc/trpl/the-stack-and-the-heap.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/the-stack-and-the-heap.md b/src/doc/trpl/the-stack-and-the-heap.md
index e7e98c5828c..5a39c94c0c3 100644
--- a/src/doc/trpl/the-stack-and-the-heap.md
+++ b/src/doc/trpl/the-stack-and-the-heap.md
@@ -51,7 +51,7 @@ we’ll throw them all away at the same time as well, we can get rid of it very
 fast too.
 
 The downside is that we can’t keep values around if we need them for longer
-than a single function. We also haven’t talked about what that name, ‘stack’
+than a single function. We also haven’t talked about what the word, ‘stack’,
 means. To do that, we need a slightly more complicated example:
 
 ```rust