| Index: src/debug/mirrors.js
|
| diff --git a/src/debug/mirrors.js b/src/debug/mirrors.js
|
| index dbb73323235e1bf5f4e9e5f595798eb1be1597d5..e5801a46beac853d33e69b75a3a3d965cb595f64 100644
|
| --- a/src/debug/mirrors.js
|
| +++ b/src/debug/mirrors.js
|
| @@ -1539,7 +1539,7 @@
|
|
|
| /**
|
| * Returns whether this property value is an exception.
|
| - * @return {boolean} True if this property value is an exception
|
| + * @return {booolean} True if this property value is an exception
|
| */
|
| PropertyMirror.prototype.isException = function() {
|
| return this.exception_ ? true : false;
|
| @@ -1558,7 +1558,7 @@
|
|
|
| /**
|
| * Returns whether this property has a getter defined through __defineGetter__.
|
| - * @return {boolean} True if this property has a getter
|
| + * @return {booolean} True if this property has a getter
|
| */
|
| PropertyMirror.prototype.hasGetter = function() {
|
| return this.getter_ ? true : false;
|
| @@ -1567,7 +1567,7 @@
|
|
|
| /**
|
| * Returns whether this property has a setter defined through __defineSetter__.
|
| - * @return {boolean} True if this property has a setter
|
| + * @return {booolean} True if this property has a setter
|
| */
|
| PropertyMirror.prototype.hasSetter = function() {
|
| return this.setter_ ? true : false;
|
|
|