diff options
author | Andrew Stahlman <andrew.stahlman@gmail.com> | 2015-04-19 14:03:21 -0700 |
---|---|---|
committer | Andrew Stahlman <andrew.stahlman@gmail.com> | 2015-04-19 14:03:21 -0700 |
commit | 1ae0d0aa7e9a5c2c19aceec8bfc6ed98781fd3c9 (patch) | |
tree | a19874f87913982585949b3f6f7eab6187f6fe3d /clojure-macros.html.markdown | |
parent | b44aded453d94d5a196356f3c05c678d6ec9323c (diff) |
Fixed spelling of 'arithmetic' in Clojure Macros tutorial.
Diffstat (limited to 'clojure-macros.html.markdown')
-rw-r--r-- | clojure-macros.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clojure-macros.html.markdown b/clojure-macros.html.markdown index 8e671936..9e907a7f 100644 --- a/clojure-macros.html.markdown +++ b/clojure-macros.html.markdown @@ -109,7 +109,7 @@ You'll want to be familiar with Clojure. Make sure you understand everything in (list x) ; -> (4) ;; It's typical to use helper functions with macros. Let's create a few to -;; help us support a (dumb) inline arithmatic syntax +;; help us support a (dumb) inline arithmetic syntax (declare inline-2-helper) (defn clean-arg [arg] (if (seq? arg) |