Skip to content

Commit

Permalink
Fix JSDoc (#2219)
Browse files Browse the repository at this point in the history
  • Loading branch information
taueres authored and dasilvacontin committed May 13, 2016
1 parent 3904da4 commit 5e1439d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/browser/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
exports.EventEmitter = EventEmitter;

/**
* Object#hasOwnProperty reference.
* Object#toString reference.
*/
var objToString = Object.prototype.toString;

Expand All @@ -14,7 +14,7 @@ var objToString = Object.prototype.toString;
*
* @api private
* @param {*} val The value to test.
* @return {boolean} true if the value is a boolean, otherwise false.
* @return {boolean} true if the value is an array, otherwise false.
*/
function isArray(val) {
return objToString.call(val) === '[object Array]';
Expand Down

0 comments on commit 5e1439d

Please sign in to comment.