aboutsummaryrefslogtreecommitdiff
path: root/core.nom
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2017-09-14 04:31:46 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2017-09-14 04:31:46 -0700
commit27f89faaee6f318edcf4a19b95f01b523d84fe09 (patch)
tree020b5ef779080d76ccb48e558558734067f425e5 /core.nom
parent02cda763c58e988301fe7819c9a12d9268e702c7 (diff)
Tweaked apostrophe rules to make %x's %y work.
Diffstat (limited to 'core.nom')
-rw-r--r--core.nom4
1 files changed, 2 insertions, 2 deletions
diff --git a/core.nom b/core.nom
index 110fd18..b43d264 100644
--- a/core.nom
+++ b/core.nom
@@ -285,9 +285,9 @@ rule "dict %items":
lua block "vars.dict[vars.pair[1]] = vars.pair[2]"
return %dict
-rule "%dict -> %key":
+rule "%dict 's %key":
lua expr "vars.dict[vars.key]"
-rule "%dict -> %key = %value":
+rule "%dict 's %key = %value":
lua block "vars.dict[vars.key] = vars.value"