FIX: Added missing word and comma in docsite/site/content/reference/expressions.md.

This commit is contained in:
John Franklin 2019-05-19 17:46:00 -05:00 committed by Jeremy Wall
parent c9b9d1b7ea
commit 53f34d1647

View File

@ -278,7 +278,7 @@ Import Expressions
Import expressions bring in a ucg file and expose their bound values as a tuple
in the current file. Import expressions are idempotent and cached so you can
use them than once in a file safely. Import expressions start with the `import`
use them more than once in a file safely. Import expressions start with the `import`
keyword and are followed by a string containing the path of the file to import.
```
@ -453,7 +453,7 @@ filter(string_reducer, 0, string) == "oo";
### Reduce expressions
Reduce expressions start with the reduce keyword followed by a symbol
referencing a func, an expression for the accumulator, and finally the tuple
referencing a func, an expression for the accumulator, and finally the tuple,
list, or string to process.
**Tuples**