summaryrefslogtreecommitdiff
path: root/src/HTML5/Parser
diff options
context:
space:
mode:
authorAsmir Mustafic <[email protected]>2018-11-24 11:26:17 +0100
committerGitHub <[email protected]>2018-11-24 11:26:17 +0100
commitc7105a8abc4549f77dbbc1ef3d96caea3c4ec320 (patch)
tree54564a76d45a5ac07fae760308dc612788615cc5 /src/HTML5/Parser
parent855fadd5a9ca31c09a4bc8b6a3656366f1755ea8 (diff)
parent38012c3a758740c1e8467d960a03adee5e345fad (diff)
Merge pull request #152 from stof/fix_typo
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 4aeeb50..d420209 100644
--- a/src/HTML5/Parser/Tokenizer.php
+++ b/src/HTML5/Parser/Tokenizer.php
@@ -472,7 +472,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.