diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-12-30 11:45:08 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-12-30 11:45:08 -0300 |
commit | bd1b87c5790c0c6fe23f76aa360e879922e1e738 (patch) | |
tree | 49978c2dd847c7ff4ec84e1a153ca37deef79e2a /testes/big.lua | |
parent | d7bb8df8414f71a290c8a4b1c9f7c6fe839a94df (diff) | |
download | lua-bd1b87c5790c0c6fe23f76aa360e879922e1e738.tar.gz lua-bd1b87c5790c0c6fe23f76aa360e879922e1e738.tar.bz2 lua-bd1b87c5790c0c6fe23f76aa360e879922e1e738.zip |
Comments (mosty typos)
Diffstat (limited to 'testes/big.lua')
-rw-r--r-- | testes/big.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testes/big.lua b/testes/big.lua index 150d15dc..39e293ef 100644 --- a/testes/big.lua +++ b/testes/big.lua | |||
@@ -66,7 +66,7 @@ assert(repstrings * ssize > 2.0^32) -- it should be larger than maximum size | |||
66 | 66 | ||
67 | local longs = string.rep("\0", ssize) -- create one long string | 67 | local longs = string.rep("\0", ssize) -- create one long string |
68 | 68 | ||
69 | -- create function to concatentate 'repstrings' copies of its argument | 69 | -- create function to concatenate 'repstrings' copies of its argument |
70 | local rep = assert(load( | 70 | local rep = assert(load( |
71 | "local a = ...; return " .. string.rep("a", repstrings, ".."))) | 71 | "local a = ...; return " .. string.rep("a", repstrings, ".."))) |
72 | 72 | ||