From 10e87150403581dd6aac38d470edd2bffde43f26 Mon Sep 17 00:00:00 2001 From: Mike Jumper Date: Thu, 18 May 2023 19:25:34 -0700 Subject: [PATCH] GUACAMOLE-615: Correct JSDoc annotation for array of any type. --- guacamole-common-js/src/main/webapp/modules/Parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole-common-js/src/main/webapp/modules/Parser.js b/guacamole-common-js/src/main/webapp/modules/Parser.js index ecf37accf..8cd93f2ca 100644 --- a/guacamole-common-js/src/main/webapp/modules/Parser.js +++ b/guacamole-common-js/src/main/webapp/modules/Parser.js @@ -312,7 +312,7 @@ Guacamole.Parser.codePointCount = function codePointCount(str, start, end) { * those strings as length-prefixed elements of a complete Guacamole * instruction. * - * @param {!*[]} elements + * @param {!Array.<*>} elements * The values that should be encoded as the elements of a Guacamole * instruction. Order of these elements is preserved. This array MUST have * at least one element.