Skip to content

Commit

Permalink
Fix typos in descriptions and errors
Browse files Browse the repository at this point in the history
  • Loading branch information
luzpaz authored Apr 26, 2023
1 parent be416cd commit 0b8d24c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions serializer/core.test
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@
"expected": ["<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">"]
},

{"description": "HTML 4.01 DOCTYPE without system identifer",
{"description": "HTML 4.01 DOCTYPE without system identifier",
"input": [["Doctype", "HTML", "-//W3C//DTD HTML 4.01//EN"]],
"expected": ["<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\">"]
},

{"description": "IBM DOCTYPE without public identifer",
{"description": "IBM DOCTYPE without public identifier",
"input": [["Doctype", "html", "", "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd"]],
"expected": ["<!DOCTYPE html SYSTEM \"http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd\">"]
}
Expand Down
2 changes: 1 addition & 1 deletion tokenizer/test2.test
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
{ "code": "unexpected-question-mark-instead-of-tag-name", "line": 1, "col": 2 }
]},

{"description":"A bogus comment stops at >, even if preceeded by two dashes",
{"description":"A bogus comment stops at >, even if preceded by two dashes",
"input":"<?foo-->",
"output":[["Comment", "?foo--"]],
"errors":[
Expand Down
2 changes: 1 addition & 1 deletion tree-construction/template.dat
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ eof in template
<body><template><i><menu>Foo</i>
#errors
no doctype
mising /menu
missing /menu
eof in template
#document
| <html>
Expand Down

0 comments on commit 0b8d24c

Please sign in to comment.