diff options
| author | Joel Martin <github@martintribe.org> | 2015-02-28 11:24:18 -0600 |
|---|---|---|
| committer | Joel Martin <github@martintribe.org> | 2015-02-28 11:24:18 -0600 |
| commit | 2963f8cebb4fb4c0f287320039708a7619629ef6 (patch) | |
| tree | 93b11b75b7a6e38427d6e3e28423882321d775de | |
| parent | 90ab31710e9a495ba3aebf7948e366093896d6d7 (diff) | |
| parent | 6a767b0d00a9a3ad578bdb8d85eddbd1afb9be35 (diff) | |
| download | mal-2963f8cebb4fb4c0f287320039708a7619629ef6.tar.gz mal-2963f8cebb4fb4c0f287320039708a7619629ef6.zip | |
Merge pull request #11 from treeform/patch-1
small typo in example
| -rw-r--r-- | process/guide.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/process/guide.md b/process/guide.md index 1cae879..9b84381 100644 --- a/process/guide.md +++ b/process/guide.md @@ -321,7 +321,7 @@ manually try some simple inputs: * ` abc ` -> `abc` * `(123 456)` -> `(123 456)` * `( 123 456 789 ) ` -> `(123 456 789)` - * `( + 2 (+ 3 4) ) ` -> `(+ 2 (* 3 4))` + * `( + 2 (* 3 4) ) ` -> `(+ 2 (* 3 4))` To verify that your code is doing more than just eliminating extra spaces (and not failing), you can instrument your `reader.qx` functions. |
