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:
thiemowmde 2024-08-11 17:51:26 +02:00
parent 0f5e628519
commit fbcb1a5831
2 changed files with 3 additions and 3 deletions

View file

@ -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 ) {

View file

@ -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 () {