diff options
author | Andre Polykanine A.K.A. Menelion ElensĂșlĂ« <andre@oire.org> | 2017-10-11 22:14:16 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-11 22:14:16 +0300 |
commit | 593e2baff79f2ac8e13ad2ccc8570415050106a0 (patch) | |
tree | 922409a668b478ce79730a369ec26006ed6a7e2e | |
parent | 7b7e3cd2422951757655e14ce0f3387b21d408dc (diff) | |
parent | 1ca9a0911060d46609aa2b715002607fae3cc272 (diff) |
Merge pull request #2905 from attil-io/master
[clojure-macros/en] Fix typo
-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 89066faf..3864f676 100644 --- a/clojure-macros.html.markdown +++ b/clojure-macros.html.markdown @@ -131,7 +131,7 @@ You'll want to be familiar with Clojure. Make sure you understand everything in ; However, we'll need to make it a macro if we want it to be run at compile time (defmacro inline-2 [form] - (inline-2-helper form))) + (inline-2-helper form)) (macroexpand '(inline-2 (1 + (3 / 2) - (1 / 2) + 1))) ; -> (+ (- (+ 1 (/ 3 2)) (/ 1 2)) 1) |