about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMax Jacobson <max@hardscrabble.net>2015-05-25 22:35:53 -0400
committerMax Jacobson <max@hardscrabble.net>2015-05-25 22:40:07 -0400
commit16334e508e6c7feaea7cdf68649f6cbc29fadb3a (patch)
tree6e35b6c82cbb7af740cc74ae7b528e0fbecd9d8a /src
parent7cb9914fceaeaa6a39add43d3da15bb6e1d191f6 (diff)
downloadrust-16334e508e6c7feaea7cdf68649f6cbc29fadb3a.tar.gz
rust-16334e508e6c7feaea7cdf68649f6cbc29fadb3a.zip
Add a missing space to the Glossary page of TRPL
r? @steveklabnik
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/glossary.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/glossary.md b/src/doc/trpl/glossary.md
index 9845fcbdcd1..c97da0e95b8 100644
--- a/src/doc/trpl/glossary.md
+++ b/src/doc/trpl/glossary.md
@@ -19,7 +19,7 @@ In the example above `x` and `y` have arity 2. `z` has arity 3.
 
 When a compiler is compiling your program, it does a number of different
 things. One of the things that it does is turn the text of your program into an
-‘abstract syntax tree’, or‘AST’. This tree is a representation of the
+‘abstract syntax tree’, or ‘AST’. This tree is a representation of the
 structure of your program. For example, `2 + 3` can be turned into a tree:
 
 ```text