From b98dd8bfb27f331a508c4d51171dd0fcb3a1c928 Mon Sep 17 00:00:00 2001 From: Wifinigel <84858080+nigelbowden@users.noreply.github.com> Date: Mon, 23 Jan 2023 07:44:14 +0000 Subject: [PATCH] fix bad var name --- scripts/ch9-06-str-funcs-mod.rsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ch9-06-str-funcs-mod.rsc b/scripts/ch9-06-str-funcs-mod.rsc index 7047916..36d424e 100644 --- a/scripts/ch9-06-str-funcs-mod.rsc +++ b/scripts/ch9-06-str-funcs-mod.rsc @@ -16,7 +16,7 @@ # function to remove last char from a string # -# e.g. :local choppedVar [$chopStrFunc "string with extra char,"] +# e.g. :local ChoppedVar [$chopStrFunc "string with extra char,"] # :global ChopStrFunc do={ :return [ :pick $1 0 ( [ :len $1 ] -1 ) ];