From 795f2587d2f2ca36111899debe0dc1b7c3abbc48 Mon Sep 17 00:00:00 2001 From: Max Cahill <1bardesign@gmail.com> Date: Mon, 23 May 2022 14:54:05 +1000 Subject: [PATCH] fixed pretty.lua using tablex instead of table alias --- pretty.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pretty.lua b/pretty.lua index 7cacd6d..344742e 100644 --- a/pretty.lua +++ b/pretty.lua @@ -118,7 +118,7 @@ function pretty._process(input, config, processing_state) table.insert(chunks, internal_value(v)) end --non sequential follows - for k, v in tablex.spairs(input) do + for k, v in table.spairs(input) do if not seen[k] then --encapsulate anything that's not a string --todo: also keywords and strings with spaces