]> git.lizzy.rs Git - rust.git/commitdiff
book: "word" feels more suitable than "name"
authorTshepang Lekhonkhobe <tshepang@gmail.com>
Thu, 3 Sep 2015 19:14:01 +0000 (21:14 +0200)
committerTshepang Lekhonkhobe <tshepang@gmail.com>
Thu, 3 Sep 2015 19:14:03 +0000 (21:14 +0200)
Also, add missing comma

src/doc/trpl/the-stack-and-the-heap.md

index e7e98c5828c100ba42a885940fb7e7c61f8f815f..5a39c94c0c36a20da5dfbdaef7a3d5875c78a145 100644 (file)
@@ -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