1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 02:27:58 +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

@@ -665,9 +665,9 @@ var JavaScript = Module("javascript", {
* time they are accessed, so they should be accessed
* judiciously.
*
* @param {function|function[]} funcs The functions for which to
* @param {function|[function]} funcs The functions for which to
* install the completers.
* @param {function[]} completers An array of completer
* @param {[function]} completers An array of completer
* functions.
*/
setCompleter: function (funcs, completers) {