mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-15 03:35:01 +00:00
Fix improper @private documentation in .js code
@private usually means "cannot be used outside of this class". But this is used. I assume it's meant to be @internal as in "internal to this codebase". Change-Id: I9326e17f706af336ea0d4b7c0af95330ed575810
This commit is contained in:
parent
0f5e628519
commit
fbcb1a5831
|
@ -96,7 +96,7 @@
|
|||
/**
|
||||
* Set the current page index
|
||||
*
|
||||
* @private
|
||||
* @internal
|
||||
* @param {number} index Current page index
|
||||
*/
|
||||
mw.echo.dm.PaginationModel.prototype.setCurrPageIndex = function ( index ) {
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
/**
|
||||
* Set the seen time value for the source
|
||||
*
|
||||
* @private
|
||||
* @internal
|
||||
* @param {string} time Seen time, as a full UTC ISO 8601 timestamp.
|
||||
* @fires mw.echo.dm.SeenTimeModel#update
|
||||
*/
|
||||
|
@ -69,7 +69,7 @@
|
|||
/**
|
||||
* Get the types associated with this model
|
||||
*
|
||||
* @private
|
||||
* @internal
|
||||
* @return {string[]} Types for this model; an array of 'alert', 'message' or both.
|
||||
*/
|
||||
mw.echo.dm.SeenTimeModel.prototype.getTypes = function () {
|
||||
|
|
Loading…
Reference in a new issue