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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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