@@ -123,7 +123,7 @@ define(function (require, exports, module) {
123123 }
124124
125125 /**
126- * @type {Object }
126+ * @type {Object }
127127 * Exposes the domains registered with the server. This object will
128128 * have a property for each registered domain. Each of those properties
129129 * will be an object containing properties for all the commands in that
@@ -138,51 +138,51 @@ define(function (require, exports, module) {
138138
139139 /**
140140 * @private
141- * @type {Array.<string> }
141+ * @type {Array.<string> }
142142 * List of module pathnames that should be re-registered if there is
143143 * a disconnection/connection (i.e. if the server died).
144144 */
145145 NodeConnection . prototype . _registeredModules = null ;
146146
147147 /**
148148 * @private
149- * @type {WebSocket }
149+ * @type {WebSocket }
150150 * The connection to the server
151151 */
152152 NodeConnection . prototype . _ws = null ;
153153
154154 /**
155155 * @private
156- * @type {?number }
156+ * @type {?number }
157157 * The port the WebSocket is currently connected to
158158 */
159159 NodeConnection . prototype . _port = null ;
160160
161161 /**
162162 * @private
163- * @type {number }
163+ * @type {number }
164164 * Unique ID for commands
165165 */
166166 NodeConnection . prototype . _commandCount = 1 ;
167167
168168 /**
169169 * @private
170- * @type {boolean }
170+ * @type {boolean }
171171 * Whether to attempt reconnection if connection fails
172172 */
173173 NodeConnection . prototype . _autoReconnect = false ;
174174
175175 /**
176176 * @private
177- * @type {Array.<jQuery.Deferred> }
177+ * @type {Array.<jQuery.Deferred> }
178178 * List of deferred objects that should be resolved pending
179179 * a successful refresh of the API
180180 */
181181 NodeConnection . prototype . _pendingInterfaceRefreshDeferreds = null ;
182182
183183 /**
184184 * @private
185- * @type {Array.<jQuery.Deferred> }
185+ * @type {Array.<jQuery.Deferred> }
186186 * Array (indexed on command ID) of deferred objects that should be
187187 * resolved/rejected with the response of commands.
188188 */
@@ -328,7 +328,7 @@ define(function (require, exports, module) {
328328
329329 /**
330330 * Determines whether the NodeConnection is currently connected
331- * @return {boolean } Whether the NodeConnection is connected.
331+ * @return {boolean } Whether the NodeConnection is connected.
332332 */
333333 NodeConnection . prototype . connected = function ( ) {
334334 return ! ! ( this . _ws && this . _ws . readyState === WebSocket . OPEN ) ;
0 commit comments