diff options
author | Case Duckworth | 2024-04-10 23:41:04 -0500 |
---|---|---|
committer | Case Duckworth | 2024-04-10 23:41:04 -0500 |
commit | fd62abb6c76673c73596b4a76037eb51fa86600f (patch) | |
tree | 93ae0b6bd4a6b189ab38c4dd3a88310d477e921a | |
parent | Implement strings (diff) | |
download | lam-fd62abb6c76673c73596b4a76037eb51fa86600f.tar.gz lam-fd62abb6c76673c73596b4a76037eb51fa86600f.zip |
Fix typo
-rw-r--r-- | read.lua | 2 |
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 |
85 | end | 85 | end |
86 | 86 | ||
87 | local function consume_numbers_etc (cs) | 87 | local 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 |