Skip to content

Commit 4f980d7

Browse files
committed
Tinker with doclets.io
1 parent c1f30b0 commit 4f980d7

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/js-partial-foreach.js

+15-15
Original file line numberDiff line numberDiff line change
@@ -66,25 +66,25 @@
6666

6767
/**
6868
* @typedef {Object} config
69-
*
70-
* @static
7169
*
72-
* @property {boolean} [checkArguments=true] Determines whether "foreach" should check the number of arguments in the callback function.
73-
* If it is enabled and:
74-
* - when the callback function has one argument, "foreach" will
75-
* pass one argument to the callback function, which will contain
76-
* the actual **value** of the container object.
70+
* @static
71+
* @memberOf js/partial/foreach
7772
*
78-
* - when the callback function has two arguments, "foreach" will
79-
* pass two arguments to the callback function, the first will be
80-
* the actual **key**, the second will be the
81-
* actual **value** of the container object.
73+
* @property {boolean} [checkArguments=true]
74+
* Determines whether "foreach" should check the number of arguments in the callback function.
75+
* If it is enabled and:
76+
* - when the callback function has one argument, "foreach" will
77+
* pass one argument to the callback function, which will contain
78+
* the actual **value** of the container object.
8279
*
83-
* If it is disabled, always two arguments will be passed to the
84-
* callback function, the first will be the actual **key**,
85-
* the second will be the actual **value** of the container object.
80+
* - when the callback function has two arguments, "foreach" will
81+
* pass two arguments to the callback function, the first will be
82+
* the actual **key**, the second will be the
83+
* actual **value** of the container object.
8684
*
87-
* @memberOf js/partial/foreach
85+
* If it is disabled, always two arguments will be passed to the
86+
* callback function, the first will be the actual **key**,
87+
* the second will be the actual **value** of the container object.
8888
*/
8989
config = {
9090
checkArguments : true,

0 commit comments

Comments
 (0)