1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-30 19:40:36 +02:00

Changed a name in a code example to make it British English-friendly

The previous name is considered rude by Brits
This commit is contained in:
Peter Kehl
2018-09-28 17:02:14 -07:00
committed by GitHub
parent b954199e10
commit 61582f6414

View File

@@ -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