From 48b9e82d3d7eb0a2dbc331f090492d18180b1c4c Mon Sep 17 00:00:00 2001 From: Juliusz Chroboczek Date: Sun, 23 Mar 2025 22:05:54 +0100 Subject: [PATCH] Fix syntax of typing in protocol.js. --- static/protocol.js | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/static/protocol.js b/static/protocol.js index 37ce64a..eff16d0 100644 --- a/static/protocol.js +++ b/static/protocol.js @@ -1587,13 +1587,14 @@ Stream.prototype.setStatsInterval = function(ms) { * any -> cancelled -> closed * * - * @parm {ServerConnection} sc - * @parm {string} userid - * @parm {string} rid - * @parm {boolean} up - * @parm {string} username - * @parm {string} mimetype - * @parm {number} size + * @param {ServerConnection} sc + * @param {string} userid + * @param {string} id + * @param {boolean} up + * @param {string} username + * @param {string} name + * @param {string} mimetype + * @param {number} size * @constructor */ function TransferredFile(sc, userid, id, up, username, name, mimetype, size) {