Skip to content

Commit 0699827

Browse files
committed
Removed stict mode warning
1 parent f1e646c commit 0699827

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/data/DataManager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var Class = require('../utils/Class');
1212
* @param {*} parent - [description]
1313
* @param {string} key - [description]
1414
* @param {*} value - [description]
15-
* @param {...*} [arguments] - Additional arguments that will be passed to the callback, after the game object, key, and data.
15+
* @param {...*} [args] - Additional arguments that will be passed to the callback, after the game object, key, and data.
1616
*/
1717

1818
/**
@@ -210,7 +210,7 @@ var DataManager = new Class({
210210
*
211211
* @param {DataEachCallback} callback - The function to call.
212212
* @param {*} [scope] - Value to use as `this` when executing callback.
213-
* @param {...*} [arguments] - Additional arguments that will be passed to the callback, after the game object, key, and data.
213+
* @param {...*} [args] - Additional arguments that will be passed to the callback, after the game object, key, and data.
214214
*
215215
* @return {Phaser.Data.DataManager} This DataManager object.
216216
*/

src/structs/List.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var Class = require('../utils/Class');
1111
* @generic {*} I - [item]
1212
*
1313
* @param {*} item - [description]
14-
* @param {...*} [arguments] - Additional arguments that will be passed to the callback, after the child.
14+
* @param {...*} [args] - Additional arguments that will be passed to the callback, after the child.
1515
*/
1616

1717
/**
@@ -807,7 +807,7 @@ var List = new Class({
807807
*
808808
* @param {EachListCallback.<T>} callback - The function to call.
809809
* @param {*} [thisArg] - Value to use as `this` when executing callback.
810-
* @param {...*} [arguments] - Additional arguments that will be passed to the callback, after the child.
810+
* @param {...*} [args] - Additional arguments that will be passed to the callback, after the child.
811811
*/
812812
each: function (callback, thisArg)
813813
{

src/structs/Set.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ var Set = new Class({
253253
* @since 3.0.0
254254
*
255255
* @param {string} callbackKey - [description]
256-
* @param {...*} [arguments] - Additional arguments that will be passed to the callback, after the child.
256+
* @param {...*} [args] - Additional arguments that will be passed to the callback, after the child.
257257
*
258258
* @return {Phaser.Structs.Set} This Set object.
259259
*/

src/textures/TextureManager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var Texture = require('./Texture');
1717
* @callback EachTextureCallback
1818
*
1919
* @param {Phaser.Textures.Texture} texture - [description]
20-
* @param {...*} [arguments] - Additional arguments that will be passed to the callback, after the child.
20+
* @param {...*} [args] - Additional arguments that will be passed to the callback, after the child.
2121
*/
2222

2323
/**
@@ -747,7 +747,7 @@ var TextureManager = new Class({
747747
*
748748
* @param {EachTextureCallback} callback - The callback function to be sent the Textures.
749749
* @param {object} scope - The value to use as `this` when executing the callback.
750-
* @param {...*} [arguments] - Additional arguments that will be passed to the callback, after the child.
750+
* @param {...*} [args] - Additional arguments that will be passed to the callback, after the child.
751751
*/
752752
each: function (callback, scope)
753753
{

src/tweens/TweenManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ var TweenManager = new Class({
387387
*
388388
* @param {function} callback - [description]
389389
* @param {object} [scope] - [description]
390-
* @param {...*} [arguments] - [description]
390+
* @param {...*} [args] - [description]
391391
*/
392392
each: function (callback, scope)
393393
{

0 commit comments

Comments
 (0)