From 4a9ff5118ab6b27b61bae1d6ed804ef69c6952e6 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Fri, 23 Oct 2015 19:20:06 -0400 Subject: [PATCH] Correct Syntax.Keyed construction. --- prototype/UI/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prototype/UI/index.html b/prototype/UI/index.html index fc609b462..11597cf8e 100644 --- a/prototype/UI/index.html +++ b/prototype/UI/index.html @@ -143,7 +143,7 @@ function Syntax(json, continuation) { if (json.indexed != null) { this.indexed = json.map(continuation); } - if (json.keyed != null) { this.keyed = (new Dictionary(json)).map(continuation); } + if (json.keyed != null) { this.keyed = (new Dictionary(json.keyed)).map(continuation); } if (json.leaf != null) { this.leaf = json; } return this; }