aboutsummaryrefslogtreecommitdiff
path: root/testes/events.lua
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2019-12-30 11:45:08 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2019-12-30 11:45:08 -0300
commitbd1b87c5790c0c6fe23f76aa360e879922e1e738 (patch)
tree49978c2dd847c7ff4ec84e1a153ca37deef79e2a /testes/events.lua
parentd7bb8df8414f71a290c8a4b1c9f7c6fe839a94df (diff)
downloadlua-bd1b87c5790c0c6fe23f76aa360e879922e1e738.tar.gz
lua-bd1b87c5790c0c6fe23f76aa360e879922e1e738.tar.bz2
lua-bd1b87c5790c0c6fe23f76aa360e879922e1e738.zip
Comments (mosty typos)
Diffstat (limited to 'testes/events.lua')
-rw-r--r--testes/events.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/testes/events.lua b/testes/events.lua
index 7fb54c9a..d0abe1d4 100644
--- a/testes/events.lua
+++ b/testes/events.lua
@@ -182,7 +182,7 @@ assert(~a == a); checkcap{"bnot", a, a}
182assert(a << 3 == a); checkcap{"shl", a, 3} 182assert(a << 3 == a); checkcap{"shl", a, 3}
183assert(1.5 >> a == 1.5); checkcap{"shr", 1.5, a} 183assert(1.5 >> a == 1.5); checkcap{"shr", 1.5, a}
184 184
185-- for comparsion operators, all results are true 185-- for comparison operators, all results are true
186assert(5.0 > a); checkcap{"lt", a, 5.0} 186assert(5.0 > a); checkcap{"lt", a, 5.0}
187assert(a >= 10); checkcap{"le", 10, a} 187assert(a >= 10); checkcap{"le", 10, a}
188assert(a <= -10.0); checkcap{"le", a, -10.0} 188assert(a <= -10.0); checkcap{"le", a, -10.0}