Skip to content

Commit 3f6827a

Browse files
committed
Missed rename of protected methods in docs
1 parent ca90905 commit 3f6827a

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

src/soundjs/AbstractSoundInstance.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ this.createjs = this.createjs || {};
475475

476476
/**
477477
* Please use {{#crossLink "AbstractSoundInstance/pan:property"}}{{/crossLink}} directly as a property
478-
* @method setPan
478+
* @method _setPan
479479
* @protected
480480
* @param {Number} value The pan value, between -1 (left) and 1 (right).
481481
* @return {AbstractSoundInstance} Returns reference to itself for chaining calls
@@ -489,7 +489,7 @@ this.createjs = this.createjs || {};
489489

490490
/**
491491
* Please use {{#crossLink "AbstractSoundInstance/pan:property"}}{{/crossLink}} directly as a property
492-
* @method getPan
492+
* @method _getPan
493493
* @protected
494494
* @return {Number} The value of the pan, between -1 (left) and 1 (right).
495495
*/
@@ -499,7 +499,7 @@ this.createjs = this.createjs || {};
499499

500500
/**
501501
* Please use {{#crossLink "AbstractSoundInstance/position:property"}}{{/crossLink}} directly as a property
502-
* @method getPosition
502+
* @method _getPosition
503503
* @protected
504504
* @return {Number} The position of the playhead in the sound, in milliseconds.
505505
*/
@@ -512,7 +512,7 @@ this.createjs = this.createjs || {};
512512

513513
/**
514514
* Please use {{#crossLink "AbstractSoundInstance/position:property"}}{{/crossLink}} directly as a property
515-
* @method setPosition
515+
* @method _setPosition
516516
* @protected
517517
* @param {Number} value The position to place the playhead, in milliseconds.
518518
* @return {AbstractSoundInstance} Returns reference to itself for chaining calls
@@ -527,7 +527,7 @@ this.createjs = this.createjs || {};
527527

528528
/**
529529
* Please use {{#crossLink "AbstractSoundInstance/startTime:property"}}{{/crossLink}} directly as a property
530-
* @method getStartTime
530+
* @method _getStartTime
531531
* @protected
532532
* @return {Number} The startTime of the sound instance in milliseconds.
533533
*/
@@ -537,7 +537,7 @@ this.createjs = this.createjs || {};
537537

538538
/**
539539
* Please use {{#crossLink "AbstractSoundInstance/startTime:property"}}{{/crossLink}} directly as a property
540-
* @method setStartTime
540+
* @method _setStartTime
541541
* @protected
542542
* @param {number} value The new startTime time in milli seconds.
543543
* @return {AbstractSoundInstance} Returns reference to itself for chaining calls
@@ -551,7 +551,7 @@ this.createjs = this.createjs || {};
551551

552552
/**
553553
* Please use {{#crossLink "AbstractSoundInstance/duration:property"}}{{/crossLink}} directly as a property
554-
* @method getDuration
554+
* @method _getDuration
555555
* @protected
556556
* @return {Number} The duration of the sound instance in milliseconds.
557557
*/
@@ -561,7 +561,7 @@ this.createjs = this.createjs || {};
561561

562562
/**
563563
* Please use {{#crossLink "AbstractSoundInstance/duration:property"}}{{/crossLink}} directly as a property
564-
* @method setDuration
564+
* @method _setDuration
565565
* @protected
566566
* @param {number} value The new duration time in milli seconds.
567567
* @return {AbstractSoundInstance} Returns reference to itself for chaining calls
@@ -576,7 +576,7 @@ this.createjs = this.createjs || {};
576576

577577
/**
578578
* Please use {{#crossLink "AbstractSoundInstance/playbackResource:property"}}{{/crossLink}} directly as a property
579-
* @method setPlayback
579+
* @method _setPlaybackResource
580580
* @protected
581581
* @param {Object} value The new playback resource.
582582
* @return {AbstractSoundInstance} Returns reference to itself for chaining calls
@@ -590,7 +590,7 @@ this.createjs = this.createjs || {};
590590

591591
/**
592592
* Please use {{#crossLink "AbstractSoundInstance/playbackResource:property"}}{{/crossLink}} directly as a property
593-
* @method setPlayback
593+
* @method _getPlaybackResource
594594
* @protected
595595
* @param {Object} value The new playback resource.
596596
* @return {Object} playback resource used for playing audio
@@ -602,7 +602,7 @@ this.createjs = this.createjs || {};
602602

603603
/**
604604
* Please use {{#crossLink "AbstractSoundInstance/loop:property"}}{{/crossLink}} directly as a property
605-
* @method getLoop
605+
* @method _getLoop
606606
* @protected
607607
* @return {number}
608608
* @since 0.6.0
@@ -613,7 +613,7 @@ this.createjs = this.createjs || {};
613613

614614
/**
615615
* Please use {{#crossLink "AbstractSoundInstance/loop:property"}}{{/crossLink}} directly as a property
616-
* @method setLoop
616+
* @method _setLoop
617617
* @protected
618618
* @param {number} value The number of times to loop after play.
619619
* @since 0.6.0

0 commit comments

Comments
 (0)