aboutsummaryrefslogtreecommitdiff
path: root/core/collections.nom
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-05-30 13:07:08 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2018-05-30 13:07:15 -0700
commitf9229c5e91ee505cefd48935c84d82f607110284 (patch)
treec771485f471bbe7ff96fed1111473771109c202d /core/collections.nom
parente5d9879a7972fa09e8c9e8f88642bbcc27e0c5a1 (diff)
Better parse error reporting.
Diffstat (limited to 'core/collections.nom')
-rw-r--r--core/collections.nom4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/collections.nom b/core/collections.nom
index 81ff3d2..91c0c10 100644
--- a/core/collections.nom
+++ b/core/collections.nom
@@ -110,8 +110,8 @@ immediately
return %flat
parse [entries in %dict] as: {key:%k, value:%v} for %k = %v in %dict
- parse [keys in %dict] as: %k for %k = %v in %dict
- parse [values in %dict] as: %v for %k = %v in %dict
+ parse [keys in %dict, keys of %dict] as: %k for %k = %v in %dict
+ parse [values in %dict, values of %dict] as: %v for %k = %v in %dict
# Metatable stuff
immediately