From 53f34d164738e93cefd128069b501ec3b27ff9d1 Mon Sep 17 00:00:00 2001 From: John Franklin Date: Sun, 19 May 2019 17:46:00 -0500 Subject: [PATCH] FIX: Added missing word and comma in docsite/site/content/reference/expressions.md. --- docsite/site/content/reference/expressions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docsite/site/content/reference/expressions.md b/docsite/site/content/reference/expressions.md index d713dca..1901266 100644 --- a/docsite/site/content/reference/expressions.md +++ b/docsite/site/content/reference/expressions.md @@ -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**