GUAC-932: Use correct case for @type tag.

This commit is contained in:
Michael Jumper
2014-12-18 21:25:17 -08:00
parent 605d5980b8
commit 25e16922d0

View File

@@ -99,7 +99,7 @@ angular.module('rest').factory('ProtocolParameter', [function defineProtocolPara
* arbitrary string, where that string represents the username of the * arbitrary string, where that string represents the username of the
* user authenticating with the remote desktop service. * user authenticating with the remote desktop service.
* *
* @type string * @type String
*/ */
USERNAME : "USERNAME", USERNAME : "USERNAME",
@@ -108,7 +108,7 @@ angular.module('rest').factory('ProtocolParameter', [function defineProtocolPara
* arbitrary string, where that string represents the password of the * arbitrary string, where that string represents the password of the
* user authenticating with the remote desktop service. * user authenticating with the remote desktop service.
* *
* @type string * @type String
*/ */
PASSWORD : "PASSWORD", PASSWORD : "PASSWORD",
@@ -116,7 +116,7 @@ angular.module('rest').factory('ProtocolParameter', [function defineProtocolPara
* The type string associated with parameters that may contain only * The type string associated with parameters that may contain only
* numeric values. * numeric values.
* *
* @type string * @type String
*/ */
NUMERIC : "NUMERIC", NUMERIC : "NUMERIC",