summaryrefslogtreecommitdiffhomepage
path: root/hy.html.markdown
diff options
context:
space:
mode:
authorBoris Verkhovskiy <boris.verk@gmail.com>2024-04-03 02:02:49 -0700
committerGitHub <noreply@github.com>2024-04-03 02:02:49 -0700
commit616e40816dfdf90c2418477327729169db0274b3 (patch)
tree0b5ae76e529c34f6648442815f535626eaeebf69 /hy.html.markdown
parent3e22775a641831a82c59a3b6197240b2fcd9a76b (diff)
parent638494ae2a0c089717f2bfff965da52e3b15a4f9 (diff)
Merge branch 'master' into elixir-casing
Diffstat (limited to 'hy.html.markdown')
-rw-r--r--hy.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/hy.html.markdown b/hy.html.markdown
index f6bdead0..5eddbf55 100644
--- a/hy.html.markdown
+++ b/hy.html.markdown
@@ -174,10 +174,10 @@ True ; => True
; create lexical bindings with `let', all variables defined thusly
; have local scope
-(let [[nemesis {"superman" "lex luther"
+(let [nemesis {"superman" "lex luther"
"sherlock" "moriarty"
- "seinfeld" "newman"}]]
- (for [(, h v) (.items nemesis)]
+ "seinfeld" "newman"}]
+ (for [[h v] (.items nemesis)]
(print (.format "{0}'s nemesis was {1}" h v))))
;; classes