Skip to content

Commit

Permalink
docs: add non-nullable modifier to return type of functions never ret…
Browse files Browse the repository at this point in the history
…urning null (#1322)
  • Loading branch information
vrana authored Feb 5, 2021
1 parent de12e40 commit 61feee1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chai.js
Original file line number Diff line number Diff line change
Expand Up @@ -8101,7 +8101,7 @@ module.exports = function getActual(obj, args) {
* inherited or not.
*
* @param {Object} object
* @returns {Array}
* @returns {!Array}
* @namespace Utils
* @name getEnumerableProperties
* @api public
Expand Down Expand Up @@ -8298,7 +8298,7 @@ module.exports = function getOwnEnumerablePropertySymbols(obj) {
* inherited or not.
*
* @param {Object} object
* @returns {Array}
* @returns {!Array}
* @namespace Utils
* @name getProperties
* @api public
Expand Down Expand Up @@ -10457,7 +10457,7 @@ function internalSetPathValue(obj, val, parsed) {
*
* @param {Object} object
* @param {String} path
* @returns {Object} info
* @returns {!Object} info
* @namespace Utils
* @name getPathInfo
* @api public
Expand Down

0 comments on commit 61feee1

Please sign in to comment.