From 43e8da178084184db1701b0abb9d615046b4c51d Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 30 Jul 2018 13:54:40 -0700 Subject: [PATCH] Simplifying. --- core/text.nom | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/text.nom b/core/text.nom index 237c395..5ec7b23 100644 --- a/core/text.nom +++ b/core/text.nom @@ -53,12 +53,12 @@ compile [bytes %start to %stop of %text] to (..) test: assume (("asdf" capitalized) == "Asdf") compile [capitalized %text, %text capitalized] to (..) - Lua value "((\(%text as lua expr)):gsub('%l', string.upper, 1))" + Lua value "(\(%text as lua expr)):gsub('%l', string.upper, 1)" test: assume (("asdf" uppercase) == "ASDF") compile [uppercase %text, %text uppercase] to (..) - Lua value "((\(%text as lua expr)):gsub('%l', string.upper))" + Lua value "(\(%text as lua expr)):upper()" test: assume (("asdf" with "X" instead of "s") == "aXdf") or barf ".."