diff options
author | Xianguang Zhou <xianguang.zhou@outlook.com> | 2023-02-17 17:54:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-17 17:54:37 +0800 |
commit | c3cc321c31ffdf8a5bba68842c7e74bbc7ae3439 (patch) | |
tree | bed55df866f9a7de3b14da192e77d8568caab229 | |
parent | 5e3762d4c67375a1304d6bfb6cac1c86668f620e (diff) |
[clojure-macros/zh-cn] Delete a unmatched parenthesis. (#4599)
-rw-r--r-- | zh-cn/clojure-macro-cn.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-cn/clojure-macro-cn.html.markdown b/zh-cn/clojure-macro-cn.html.markdown index 23b2f203..85b966e9 100644 --- a/zh-cn/clojure-macro-cn.html.markdown +++ b/zh-cn/clojure-macro-cn.html.markdown @@ -131,7 +131,7 @@ lang: zh-cn ; 然而,如果我们希望它在编译期执行,就需要创建宏 (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) |