about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-09-03 20:10:09 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-09-03 20:10:09 -0400
commitfd10ded4eaf49adf29f61fc5c52932ff74552dd9 (patch)
treec2b2b40c3bc6f8d3c91ae811d21492928ffeb767 /src
parentce20719717d65efb0898307cef3c682590767148 (diff)
parent3525a13fea02169b4a02de722a5201296dc4ac8e (diff)
downloadrust-fd10ded4eaf49adf29f61fc5c52932ff74552dd9.tar.gz
rust-fd10ded4eaf49adf29f61fc5c52932ff74552dd9.zip
Rollup merge of #28214 - tshepang:word-not-name, r=steveklabnik
Also, add missing comma
Diffstat (limited to 'src')
-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 6cf8e45ae1f..fb778b59a3d 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