From 16334e508e6c7feaea7cdf68649f6cbc29fadb3a Mon Sep 17 00:00:00 2001 From: Max Jacobson Date: Mon, 25 May 2015 22:35:53 -0400 Subject: [PATCH] Add a missing space to the Glossary page of TRPL r? @steveklabnik --- src/doc/trpl/glossary.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/glossary.md b/src/doc/trpl/glossary.md index 9845fcbdcd173..c97da0e95b823 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