diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-10-02 05:07:22 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-02 05:07:22 +0530 |
commit | d34e296f041c1d974cd9a66337796461a846af5a (patch) | |
tree | 3924bc31e7f37068435fd20f24d8fa0ab8bc8cdc | |
parent | 0e83b1020389f57556726f023098c261aadafb51 (diff) | |
parent | 61582f64149f6d5bd00880dfebd7e2b4904a6d77 (diff) |
Merge pull request #3232 from peter-kehl/patch-1
clojure/en Changed a name in a code example to make it British English-friendly
-rw-r--r-- | clojure.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clojure.html.markdown b/clojure.html.markdown index 7830f228..c94625d6 100644 --- a/clojure.html.markdown +++ b/clojure.html.markdown @@ -150,7 +150,7 @@ x ; => 1 ; You can also use this shorthand to create functions: (def hello2 #(str "Hello " %1)) -(hello2 "Fanny") ; => "Hello Fanny" +(hello2 "Julie") ; => "Hello Julie" ; You can have multi-variadic functions, too (defn hello3 |