From d3db2a44d2750140921b534ed4b6f1d4c6c2f56a Mon Sep 17 00:00:00 2001 From: Tad Whitaker Date: Fri, 21 Oct 2016 13:24:16 -0700 Subject: [PATCH] Fixed a couple typos. --- outline/intro.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/outline/intro.md b/outline/intro.md index abf7f698..0e32dadb 100644 --- a/outline/intro.md +++ b/outline/intro.md @@ -124,7 +124,7 @@ Introduction to Programming with Clojure > computer in Clojure. A left parenthesis > is the start of the instruction, and a matching right parenthesis is > the end of enclosing instruction. Normally, Clojure code has a lot -> of nested parentheses, on other words, nested enclosing instructions. +> of nested parentheses, or in other words, nested enclosing instructions. {: ng-show="block31" .description} #### Functions @@ -133,7 +133,7 @@ Introduction to Programming with Clojure > computer. That instruction is normally what we call a _function_. > The functions do all the hard work in Clojure. > `print-str`, `+` and `forward` are all functions. -> When these functions get run, they return a some type of value. +> When these functions get run, they return some type of value. > Clojure functions always return a value. {: ng-show="block32" .description}