Skip to content

Commit beaedc1

Browse files
committed
Fix documentation formatting
Add fullstops to end of each line Fix JSDoc formatting for properties that take multiple types
1 parent 44e4e71 commit beaedc1

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/animations/AnimationManager.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -319,23 +319,23 @@ var AnimationManager = new Class({
319319
/**
320320
* @typedef {object} GenerateFrameNumbersConfig
321321
*
322-
* @property {integer} [start=0] - The starting frame of the animation
323-
* @property {integer} [end=-1] - The ending frame of the animation
324-
* @property {boolean|integer} [first=false] - A frame to put at the beginning of the animation, before `start` or `outputArray` or `frames`
325-
* @property {AnimationFrameConfig[]} [outputArray=[]] - An array to concatenate the output onto
326-
* @property {boolean|integer[]} [frames=false] - A custom sequence of frames
322+
* @property {integer} [start=0] - The starting frame of the animation.
323+
* @property {integer} [end=-1] - The ending frame of the animation.
324+
* @property {(boolean|integer)} [first=false] - A frame to put at the beginning of the animation, before `start` or `outputArray` or `frames`.
325+
* @property {AnimationFrameConfig[]} [outputArray=[]] - An array to concatenate the output onto.
326+
* @property {(boolean|integer[])} [frames=false] - A custom sequence of frames.
327327
*/
328328

329329
/**
330-
* Generates an array of {@link AnimationFrameConfig} objects from a texture key and configuration object
330+
* Generates an array of {@link AnimationFrameConfig} objects from a texture key and configuration object.
331331
*
332332
* @method Phaser.Animations.AnimationManager#generateFrameNumbers
333333
* @since 3.0.0
334334
*
335-
* @param {string} key - The key for the texture containing the animation frames
336-
* @param {GenerateFrameNumbersConfig} config - The configuration object for the animation frames
335+
* @param {string} key - The key for the texture containing the animation frames.
336+
* @param {GenerateFrameNumbersConfig} config - The configuration object for the animation frames.
337337
*
338-
* @return {AnimationFrameConfig[]} The array of {@link AnimationFrameConfig} objects
338+
* @return {AnimationFrameConfig[]} The array of {@link AnimationFrameConfig} objects.
339339
*/
340340
generateFrameNumbers: function (key, config)
341341
{

0 commit comments

Comments
 (0)