summaryrefslogtreecommitdiff
path: root/src/HTML5/Elements.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/HTML5/Elements.php')
-rw-r--r--src/HTML5/Elements.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/HTML5/Elements.php b/src/HTML5/Elements.php
index 2b9ba63..819ce0e 100644
--- a/src/HTML5/Elements.php
+++ b/src/HTML5/Elements.php
@@ -476,12 +476,12 @@ class Elements
* The element name.
* @param int $mask
* One of the constants on this class.
- * @return boolean TRUE if the element matches the mask, FALSE otherwise.
+ * @return boolean true if the element matches the mask, false otherwise.
*/
public static function isA($name, $mask)
{
if (! static::isElement($name)) {
- return FALSE;
+ return false;
}
return (static::element($name) & $mask) == $mask;
@@ -566,7 +566,7 @@ class Elements
return static::$mathml[$name];
}
- return FALSE;
+ return false;
}
/**