summaryrefslogtreecommitdiff
path: root/src/HTML5/Parser
diff options
context:
space:
mode:
authorChristophe Coevoet <[email protected]>2018-11-24 11:21:06 +0100
committerChristophe Coevoet <[email protected]>2018-11-24 11:21:06 +0100
commit38012c3a758740c1e8467d960a03adee5e345fad (patch)
tree82e8fa51a9e21f132b6921529f0daf3f44381ae8 /src/HTML5/Parser
parent9d32f2d6f451e736634aeaffd21ede3990616f01 (diff)
Fix typo in an error message
Diffstat (limited to 'src/HTML5/Parser')
-rw-r--r--src/HTML5/Parser/Tokenizer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/HTML5/Parser/Tokenizer.php b/src/HTML5/Parser/Tokenizer.php
index 7b0b3f3..7a6fed4 100644
--- a/src/HTML5/Parser/Tokenizer.php
+++ b/src/HTML5/Parser/Tokenizer.php
@@ -486,7 +486,7 @@ class Tokenizer
}
if ($tok == '<') {
- $this->parseError("Unexepcted '<' inside of attributes list.");
+ $this->parseError("Unexpected '<' inside of attributes list.");
// Push the < back onto the stack.
$this->scanner->unconsume();
// Let the caller figure out how to handle this.