Spelling: Fix various spelling mistakes (thanks timeless)

Words, sometimes I wonder how they even work

Maybe I missed something.
This commit is contained in:
Kim Alvefur 2022-03-07 00:13:56 +01:00
parent ece896d253
commit 43351d2b54
18 changed files with 31 additions and 31 deletions

View file

@ -20,8 +20,8 @@
"backslash": "\\",
"controls": "\b\f\n\r\t",
"slash": "/ & \/",
"alpha": "abcdefghijklmnopqrstuvwyz",
"ALPHA": "ABCDEFGHIJKLMNOPQRSTUVWYZ",
"alpha": "abcdefghijklmnopqrstuvwxyz",
"ALPHA": "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
"digit": "0123456789",
"0123456789": "digit",
"special": "`1~!@#$%^&*()_+-={':[,]}|;.</>?",
@ -55,4 +55,4 @@
0.1e1,
1e-1,
1e00,2e+00,2e-00
,"rosebud"]
,"rosebud"]

View file

@ -452,14 +452,14 @@ describe("util.dataforms", function ()
assert.string(e.number);
end);
it("bounds-cheking work works", function ()
it("bounds-checking work works", function ()
local d,e = f:data(f:form({number = 100}));
assert.not_equal(100, d.number);
assert.table(e);
assert.string(e.number);
end);
it("serializes largeer ints okay", function ()
it("serializes larger ints okay", function ()
local x = f:form{number=1125899906842624}
assert.equal("1125899906842624", x:find("field/value#"))
end);