GUACAMOLE-986: Merge explicit documentation of non-nullable return values and parameters.

This commit is contained in:
Mike Jumper
2021-02-21 16:03:54 -08:00
committed by GitHub
15 changed files with 50 additions and 50 deletions

View File

@@ -90,7 +90,7 @@ Guacamole.Tunnel = function() {
/**
* Returns whether this tunnel is currently connected.
*
* @returns {Boolean}
* @returns {boolean}
* true if this tunnel is currently connected, false otherwise.
*/
this.isConnected = function isConnected() {
@@ -412,7 +412,7 @@ Guacamole.HTTPTunnel = function(tunnelURL, crossDomain, extraTunnelHeaders) {
*
* @private
* @param value The value to convert.
* @return {String} The converted value.
* @return {string} The converted value.
*/
function getElement(value) {
var string = new String(value);
@@ -934,7 +934,7 @@ Guacamole.WebSocketTunnel = function(tunnelURL) {
*
* @private
* @param value The value to convert.
* @return {String} The converted value.
* @return {string} The converted value.
*/
function getElement(value) {
var string = new String(value);