Skip to content

Commit 61feee1

Browse files
authored
docs: add non-nullable modifier to return type of functions never returning null (#1322)
1 parent de12e40 commit 61feee1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

chai.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8101,7 +8101,7 @@ module.exports = function getActual(obj, args) {
81018101
* inherited or not.
81028102
*
81038103
* @param {Object} object
8104-
* @returns {Array}
8104+
* @returns {!Array}
81058105
* @namespace Utils
81068106
* @name getEnumerableProperties
81078107
* @api public
@@ -8298,7 +8298,7 @@ module.exports = function getOwnEnumerablePropertySymbols(obj) {
82988298
* inherited or not.
82998299
*
83008300
* @param {Object} object
8301-
* @returns {Array}
8301+
* @returns {!Array}
83028302
* @namespace Utils
83038303
* @name getProperties
83048304
* @api public
@@ -10457,7 +10457,7 @@ function internalSetPathValue(obj, val, parsed) {
1045710457
*
1045810458
* @param {Object} object
1045910459
* @param {String} path
10460-
* @returns {Object} info
10460+
* @returns {!Object} info
1046110461
* @namespace Utils
1046210462
* @name getPathInfo
1046310463
* @api public

0 commit comments

Comments
 (0)