Skip to content

Commit 72dbfcd

Browse files
committed
jsdoc path fix
1 parent 162e910 commit 72dbfcd

12 files changed

Lines changed: 12 additions & 12 deletions

src/utils/object/Clone.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Shallow Object Clone. Will not clone nested objects.
99
*
10-
* @function Phaser.Utils.Object.Clone
10+
* @function Phaser.Utils.Objects.Clone
1111
* @since 3.0.0
1212
*
1313
* @param {object} obj - the object from which to clone

src/utils/object/Extend.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var IsPlainObject = require('./IsPlainObject');
1313
/**
1414
* This is a slightly modified version of http://api.jquery.com/jQuery.extend/
1515
*
16-
* @function Phaser.Utils.Object.Extend
16+
* @function Phaser.Utils.Objects.Extend
1717
* @since 3.0.0
1818
*
1919
* @return {object} [description]

src/utils/object/GetAdvancedValue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var GetValue = require('./GetValue');
3737
/**
3838
* [description]
3939
*
40-
* @function Phaser.Utils.Object.GetAdvancedValue
40+
* @function Phaser.Utils.Objects.GetAdvancedValue
4141
* @since 3.0.0
4242
*
4343
* @param {object} source - [description]

src/utils/object/GetFastValue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Finds the key within the top level of the {@link source} object, or returns {@link defaultValue}
99
*
10-
* @function Phaser.Utils.Object.GetFastValue
10+
* @function Phaser.Utils.Objects.GetFastValue
1111
* @since 3.0.0
1212
*
1313
* @param {object} source - The object to search

src/utils/object/GetMinMaxValue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var Clamp = require('../../math/Clamp');
1010
/**
1111
* [description]
1212
*
13-
* @function Phaser.Utils.Object.GetMinMaxValue
13+
* @function Phaser.Utils.Objects.GetMinMaxValue
1414
* @since 3.0.0
1515
*
1616
* @param {object} source - [description]

src/utils/object/GetValue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* [description]
1313
*
14-
* @function Phaser.Utils.Object.GetValue
14+
* @function Phaser.Utils.Objects.GetValue
1515
* @since 3.0.0
1616
*
1717
* @param {object} source - [description]

src/utils/object/HasAll.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Verifies that an object contains all requested keys
99
*
10-
* @function Phaser.Utils.Object.HasAll
10+
* @function Phaser.Utils.Objects.HasAll
1111
* @since 3.0.0
1212
*
1313
* @param {object} source - an object on which to check for key existence

src/utils/object/HasAny.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Verifies that an object contains at least one of the requested keys
99
*
10-
* @function Phaser.Utils.Object.HasAny
10+
* @function Phaser.Utils.Objects.HasAny
1111
* @since 3.0.0
1212
*
1313
* @param {object} source - an object on which to check for key existence

src/utils/object/HasValue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* [description]
99
*
10-
* @function Phaser.Utils.Object.HasValue
10+
* @function Phaser.Utils.Objects.HasValue
1111
* @since 3.0.0
1212
*
1313
* @param {object} source - [description]

src/utils/object/IsPlainObject.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* This is a slightly modified version of jQuery.isPlainObject.
99
* A plain object is an object whose internal class property is [object Object].
1010
*
11-
* @function Phaser.Utils.Object.IsPlainObject
11+
* @function Phaser.Utils.Objects.IsPlainObject
1212
* @since 3.0.0
1313
*
1414
* @param {object} obj - The object to inspect.

0 commit comments

Comments
 (0)