]> git.lizzy.rs Git - rust.git/commitdiff
Add a missing space to the Glossary page of TRPL
authorMax Jacobson <max@hardscrabble.net>
Tue, 26 May 2015 02:35:53 +0000 (22:35 -0400)
committerMax Jacobson <max@hardscrabble.net>
Tue, 26 May 2015 02:40:07 +0000 (22:40 -0400)
r? @steveklabnik

src/doc/trpl/glossary.md

index 9845fcbdcd173ec3d6b3543bb2fba9689cf5727e..c97da0e95b8235a0d6c9d352d9e3ab86002707b2 100644 (file)
@@ -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