Skip to content

Commit 5f76a1d

Browse files
committed
update JSDoc comment types
1 parent af0e3de commit 5f76a1d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

js_src/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ goog.exportSymbol('app.makeModelTable', app.makeModelTable);
121121

122122
/**
123123
* Set the software versions
124-
* @param {!string} version_info The software versions.
124+
* @param {!Array.<Object>} version_info The software versions.
125125
*/
126126
app.setSoftwareVersions = function(version_info) {
127127
app.SOFTWARE_VERSIONS = version_info;

js_src/pid_display.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ goog.require('goog.ui.Tooltip');
2626

2727
/**
2828
* A message field, this represents a field within a RDM message.
29-
* @param {*} field_info
29+
* @param {Object} field_info
3030
* @param {?goog.dom.DomHelper=} opt_domHelper Optional DOM helper.
3131
* @constructor
3232
* @extends goog.ui.Component
@@ -40,7 +40,7 @@ goog.inherits(app.MessageField, goog.ui.Component);
4040

4141
/**
4242
* Return the underlying field info
43-
* @return {*}
43+
* @return {Object}
4444
*/
4545
app.MessageField.prototype.pid = function() { return this._pid; };
4646

0 commit comments

Comments
 (0)