GUAC-791: Fix type expressions to comply with JSDoc 3.

This commit is contained in:
Michael Jumper
2015-12-14 13:53:00 -08:00
parent 91f8f5b06b
commit 2959513d95
18 changed files with 132 additions and 132 deletions

View File

@@ -42,20 +42,20 @@ Guacamole.StringReader = function(stream) {
/**
* Wrapped Guacamole.ArrayBufferReader.
* @private
* @type Guacamole.ArrayBufferReader
* @type {Guacamole.ArrayBufferReader}
*/
var array_reader = new Guacamole.ArrayBufferReader(stream);
/**
* The number of bytes remaining for the current codepoint.
*
* @type Number
* @type {Number}
*/
var bytes_remaining = 0;
/**
* The current codepoint value, as calculated from bytes read so far.
* @type Number
* @type {Number}
*/
var codepoint = 0;