aboutsummaryrefslogtreecommitdiff
path: root/spec/outputs/tables.lua
diff options
context:
space:
mode:
Diffstat (limited to 'spec/outputs/tables.lua')
-rw-r--r--spec/outputs/tables.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/outputs/tables.lua b/spec/outputs/tables.lua
index 1d28a43..e9df1c4 100644
--- a/spec/outputs/tables.lua
+++ b/spec/outputs/tables.lua
@@ -187,18 +187,18 @@ k = {
187 ["hello"] = "world", 187 ["hello"] = "world",
188 ["one"] = "zone" 188 ["one"] = "zone"
189} 189}
190local f = "one", { 190local f1, f2, f3 = "one", {
191 ["two"] = three 191 ["two"] = three
192}, "four" 192}, "four"
193f = { 193f1, f2 = {
194 ["two"] = three 194 ["two"] = three
195}, "four" 195}, "four"
196f = { 196f1 = {
197 "one", 197 "one",
198 ["two"] = three, 198 ["two"] = three,
199 "four" 199 "four"
200} 200}
201local j = "one", { 201local j1, j2, j3, j4 = "one", {
202 ["two"] = three, 202 ["two"] = three,
203 ["four"] = five 203 ["four"] = five
204}, 6, 7 204}, 6, 7