summaryrefslogtreecommitdiff
path: root/src/HTML5/Parser
diff options
context:
space:
mode:
authorMišo Belica <[email protected]>2014-02-11 13:59:10 +0100
committerMišo Belica <[email protected]>2014-02-11 13:59:10 +0100
commit23479b1e18c4d037115f11b3aa5c2ff1cae86700 (patch)
treeba6fdc47df7d27764473d0477b4243d4a07083b8 /src/HTML5/Parser
parent3b691837c6d7a0969137048fbda274463d6b1d7c (diff)
Removed trailing whitespace
Diffstat (limited to 'src/HTML5/Parser')
-rw-r--r--src/HTML5/Parser/Tokenizer.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/HTML5/Parser/Tokenizer.php b/src/HTML5/Parser/Tokenizer.php
index 04baa10..08b898d 100644
--- a/src/HTML5/Parser/Tokenizer.php
+++ b/src/HTML5/Parser/Tokenizer.php
@@ -774,7 +774,7 @@ class Tokenizer {
*
* XML processing instructions are supposed to be ignored in HTML5,
* treated as "bogus comments". However, since we're not a user
- * agent, we allow them. We consume until ?> and then issue a
+ * agent, we allow them. We consume until ?> and then issue a
* EventListener::processingInstruction() event.
*/
protected function processingInstruction() {
@@ -819,7 +819,7 @@ class Tokenizer {
// ================================================================
/**
- * Read from the input stream until we get to the desired sequene
+ * Read from the input stream until we get to the desired sequene
* or hit the end of the input stream.
*/
protected function readUntilSequence($sequence) {
@@ -849,11 +849,11 @@ class Tokenizer {
* This will read the stream for the $sequence. If it's
* found, this will return TRUE. If not, return FALSE.
* Since this unconsumes any chars it reads, the caller
- * will still need to read the next sequence, even if
+ * will still need to read the next sequence, even if
* this returns TRUE.
*
* Example: $this->sequenceMatches('</script>') will
- * see if the input stream is at the start of a
+ * see if the input stream is at the start of a
* '</script>' string.
*/
protected function sequenceMatches($sequence) {
@@ -902,7 +902,7 @@ class Tokenizer {
/**
* Emit a parse error.
*
- * A parse error always returns FALSE because it never consumes any
+ * A parse error always returns FALSE because it never consumes any
* characters.
*/
protected function parseError($msg) {
@@ -1008,7 +1008,7 @@ class Tokenizer {
return $entity;
}
- // If in an attribute, then failing to match ; means unconsume the
+ // If in an attribute, then failing to match ; means unconsume the
// entire string. Otherwise, failure to match is an error.
if ($inAttribute) {
$this->scanner->unconsume($this->scanner->position() - $start);