aboutsummaryrefslogtreecommitdiff
path: root/testes/locals.lua
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2025-04-23 11:36:09 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2025-04-23 11:36:09 -0300
commit9b014d4bcd4ebadb523f1c1a1d38148d8526e5ed (patch)
tree50d7ec68ff36d2fa017b970b11985c6cce5861aa /testes/locals.lua
parent50fd8d03c33bbe52ac5b34c4eb748197b349cedd (diff)
downloadlua-9b014d4bcd4ebadb523f1c1a1d38148d8526e5ed.tar.gz
lua-9b014d4bcd4ebadb523f1c1a1d38148d8526e5ed.tar.bz2
lua-9b014d4bcd4ebadb523f1c1a1d38148d8526e5ed.zip
Details (typos in comments)
Diffstat (limited to 'testes/locals.lua')
-rw-r--r--testes/locals.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/testes/locals.lua b/testes/locals.lua
index ccea0a14..eeeb4338 100644
--- a/testes/locals.lua
+++ b/testes/locals.lua
@@ -1162,7 +1162,7 @@ do
1162 local function open (x) 1162 local function open (x)
1163 numopen = numopen + 1 1163 numopen = numopen + 1
1164 return 1164 return
1165 function () -- iteraction function 1165 function () -- iteration function
1166 x = x - 1 1166 x = x - 1
1167 if x > 0 then return x end 1167 if x > 0 then return x end
1168 end, 1168 end,