aboutsummaryrefslogtreecommitdiff
path: root/go/src/step7_quote
diff options
context:
space:
mode:
Diffstat (limited to 'go/src/step7_quote')
-rw-r--r--go/src/step7_quote/step7_quote.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/src/step7_quote/step7_quote.go b/go/src/step7_quote/step7_quote.go
index 68c2a85..0877bbb 100644
--- a/go/src/step7_quote/step7_quote.go
+++ b/go/src/step7_quote/step7_quote.go
@@ -71,7 +71,7 @@ func eval_ast(ast MalType, env EnvType) (MalType, error) {
lst = append(lst, exp)
}
return Vector{lst}, nil
- } else if Hash_Map_Q(ast) {
+ } else if HashMap_Q(ast) {
m := ast.(map[string]MalType)
new_hm := map[string]MalType{}
for k, v := range m {