diff options
author | EuAndreh <eu@euandre.org> | 2021-04-24 17:52:30 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-04-24 17:52:30 -0300 |
commit | 3a7a1655a3b65888bbd4e2bb8066bed473443a35 (patch) | |
tree | 61af639afbc309ca0ebe2fbfdcc9637431779158 /_tils/2021-04-24-clojure-auto-curry.md | |
parent | Proofread TIL on CLOS (diff) | |
download | euandre.org-3a7a1655a3b65888bbd4e2bb8066bed473443a35.tar.gz euandre.org-3a7a1655a3b65888bbd4e2bb8066bed473443a35.tar.xz |
Proofread TIL on Clojure auto currying
Diffstat (limited to '_tils/2021-04-24-clojure-auto-curry.md')
-rw-r--r-- | _tils/2021-04-24-clojure-auto-curry.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_tils/2021-04-24-clojure-auto-curry.md b/_tils/2021-04-24-clojure-auto-curry.md index 8a54561..98d6c9a 100644 --- a/_tils/2021-04-24-clojure-auto-curry.md +++ b/_tils/2021-04-24-clojure-auto-curry.md @@ -12,7 +12,7 @@ ref: clojure-auto-curry --- -A simple macro defined by [Loretta He][lorettahe] to create Clojure functions that are curried on all arguments, relying on Clojure's multi-arity support: +Here's a simple macro defined by [Loretta He][lorettahe] to create Clojure functions that are curried on all arguments, relying on Clojure's multi-arity support: ```clojure (defmacro defcurry |