From b402e6945b29fb6be2162f3e25139a96d095afd1 Mon Sep 17 00:00:00 2001 From: Aref Khandan Date: Fri, 30 Jan 2026 23:16:57 +0330 Subject: [PATCH] little typo fix --- files/examples/quickluatour.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/examples/quickluatour.lua b/files/examples/quickluatour.lua index 26dab9d..8ba6e10 100755 --- a/files/examples/quickluatour.lua +++ b/files/examples/quickluatour.lua @@ -52,7 +52,7 @@ print(type(d)) -- Variable names consist of letters, digits and underscores. -- They cannot start with a digit. -one_two_3 = 123 -- is valid varable name +one_two_3 = 123 -- is valid variable name -- 1_two_3 is not a valid variable name.