mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
Spelling: Fix various spelling mistakes (thanks timeless)
Words, sometimes I wonder how they even work Maybe I missed something.
This commit is contained in:
parent
ece896d253
commit
43351d2b54
18 changed files with 31 additions and 31 deletions
|
@ -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"]
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue