aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2023-04-18 09:44:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2023-04-18 09:44:10 -0300
commite15f1f2bb7a38a3c94519294d031e48508d65006 (patch)
tree1528b4a73da045e4d1617c1a276e66c056ba7686 /llex.c
parentb5c65705ca78560cd2735778737122ea5f858bd0 (diff)
downloadlua-5.4.5.tar.gz
lua-5.4.5.tar.bz2
lua-5.4.5.zip
Detailsv5.4.5
Typos in comments and details in the manual.
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/llex.c b/llex.c
index b0dc0acc..5fc39a5c 100644
--- a/llex.c
+++ b/llex.c
@@ -128,7 +128,7 @@ l_noret luaX_syntaxerror (LexState *ls, const char *msg) {
128** ensuring there is only one copy of each unique string. The table 128** ensuring there is only one copy of each unique string. The table
129** here is used as a set: the string enters as the key, while its value 129** here is used as a set: the string enters as the key, while its value
130** is irrelevant. We use the string itself as the value only because it 130** is irrelevant. We use the string itself as the value only because it
131** is a TValue readly available. Later, the code generation can change 131** is a TValue readily available. Later, the code generation can change
132** this value. 132** this value.
133*/ 133*/
134TString *luaX_newstring (LexState *ls, const char *str, size_t l) { 134TString *luaX_newstring (LexState *ls, const char *str, size_t l) {