summaryrefslogtreecommitdiff
path: root/src/HTML5/Parser/Scanner.php
diff options
context:
space:
mode:
authorMatt Farina <[email protected]>2013-04-10 11:36:13 -0400
committerMatt Farina <[email protected]>2013-04-10 11:58:48 -0400
commiteb0ea976ffc57aa3701e3e4cf6ce18375e9d10c2 (patch)
treebcb967b68bd4933b60da67e0013e2de07c9573ab /src/HTML5/Parser/Scanner.php
parent04fde93f07af13fdf5ddf5d5d539467135221d2a (diff)
Added tests for the scanner getHex method.
Diffstat (limited to 'src/HTML5/Parser/Scanner.php')
-rw-r--r--src/HTML5/Parser/Scanner.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/HTML5/Parser/Scanner.php b/src/HTML5/Parser/Scanner.php
index 2500dab..77f14fb 100644
--- a/src/HTML5/Parser/Scanner.php
+++ b/src/HTML5/Parser/Scanner.php
@@ -86,15 +86,13 @@ class Scanner {
}
/**
- * Get the next group of that is a hex value.
+ * Get the next group of that contains hex characters.
*
* Note, along with getting the characters the pointer in the data will be
* moved as well.
- *
- * @todo There is a potential for many false positives with this method. Make it more accurate.
*
* @return string
- * The next group that is a hex value.
+ * The next group that is hex characters.
*/
public function getHex() {
return $this->is->charsWhile(self::CHARS_HEX);