about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2024-04-10 23:41:04 -0500
committerCase Duckworth2024-04-10 23:41:04 -0500
commitfd62abb6c76673c73596b4a76037eb51fa86600f (patch)
tree93ae0b6bd4a6b189ab38c4dd3a88310d477e921a
parentImplement strings (diff)
downloadlam-fd62abb6c76673c73596b4a76037eb51fa86600f.tar.gz
lam-fd62abb6c76673c73596b4a76037eb51fa86600f.zip
Fix typo
-rw-r--r--read.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/read.lua b/read.lua index 069df57..c9058e4 100644 --- a/read.lua +++ b/read.lua
@@ -84,7 +84,7 @@ local function consume_whitespace (cs)
84 return false, nil, cs 84 return false, nil, cs
85end 85end
86 86
87local function consume_numbers_etc (cs) 87local function consume_number_etc (cs)
88 -- Since numbers can start with +, -, and ., those symbols and ... are 88 -- Since numbers can start with +, -, and ., those symbols and ... are
89 -- handled along with numbers. 89 -- handled along with numbers.
90 local tok 90 local tok