1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-22 16:15:46 +01:00

Use [foo] instead of foo[] consistently in source doc type annotations.

This commit is contained in:
Štěpán Němec
2011-07-22 12:33:36 +02:00
parent eca606fab2
commit cc03bfadf8
15 changed files with 51 additions and 51 deletions

View File

@@ -333,7 +333,7 @@ const Player = Module("player", {
/**
* Returns an array of all available playlists.
*
* @returns {sbIMediaList[]}
* @returns {[sbIMediaList]}
*/
getPlaylists: function getPlaylists() {
let mainLibrary = LibraryUtils.mainLibrary;
@@ -367,7 +367,7 @@ const Player = Module("player", {
/**
* Returns an array of all available media pages.
*
* @returns {sbIMediaPageInfo[]}
* @returns {[sbIMediaPageInfo]}
*/
getMediaPages: function getMediaPages() {
let list = SBGetBrowser().currentMediaPage.mediaListView.mediaList;