Change {Boolean} to {boolean} throughout

Change-Id: Ibbbaed3762efa6a6928ba6e4611b1f1fef91ad8f
This commit is contained in:
Catrope 2013-02-20 10:03:55 -08:00
parent 82114467f1
commit a095c0ab06

View file

@ -145,7 +145,7 @@ ve.dm.Node.static.toDomElement = function ( /*dataElement*/ ) {
* Linear model elements with this type will be moved out of the linear model into the metadata. * Linear model elements with this type will be moved out of the linear model into the metadata.
* *
* @static * @static
* @property {Boolean} static.isMeta * @property {boolean} static.isMeta
* @inheritable * @inheritable
*/ */
ve.dm.Node.static.isMeta = false; ve.dm.Node.static.isMeta = false;
@ -155,7 +155,7 @@ ve.dm.Node.static.isMeta = false;
* only special node types are not wrapped. * only special node types are not wrapped.
* *
* @static * @static
* @property {Boolean} static.isWrapped * @property {boolean} static.isWrapped
* @inheritable * @inheritable
*/ */
ve.dm.Node.static.isWrapped = true; ve.dm.Node.static.isWrapped = true;
@ -166,7 +166,7 @@ ve.dm.Node.static.isWrapped = true;
* also known as inline nodes. * also known as inline nodes.
* *
* @static * @static
* @property {Boolean} static.isContent * @property {boolean} static.isContent
* @inheritable * @inheritable
*/ */
ve.dm.Node.static.isContent = false; ve.dm.Node.static.isContent = false;
@ -176,7 +176,7 @@ ve.dm.Node.static.isContent = false;
* content nodes. * content nodes.
* *
* @static * @static
* @property {Boolean} static.canContainContent * @property {boolean} static.canContainContent
* @inheritable * @inheritable
*/ */
ve.dm.Node.static.canContainContent = false; ve.dm.Node.static.canContainContent = false;
@ -189,7 +189,7 @@ ve.dm.Node.static.canContainContent = false;
* stripping and preservation. * stripping and preservation.
* *
* @static * @static
* @property {Boolean} static.hasSignificantWhitespace * @property {boolean} static.hasSignificantWhitespace
* @inheritable * @inheritable
*/ */
ve.dm.Node.static.hasSignificantWhitespace = false; ve.dm.Node.static.hasSignificantWhitespace = false;