You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/05/06 09:17:32 UTC

[7/9] git commit: [flex-asjs] [refs/heads/develop] - fix linting error

fix linting error


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/135f04d3
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/135f04d3
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/135f04d3

Branch: refs/heads/develop
Commit: 135f04d31aa1b3b007ec3edff66153c523e484b0
Parents: 9d6be6b
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 6 00:08:42 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 6 00:08:42 2014 -0700

----------------------------------------------------------------------
 frameworks/js/FlexJS/src/org/apache/flex/jquery/RadioButton.js | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/135f04d3/frameworks/js/FlexJS/src/org/apache/flex/jquery/RadioButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/jquery/RadioButton.js b/frameworks/js/FlexJS/src/org/apache/flex/jquery/RadioButton.js
index 76a86ae..2611318 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/jquery/RadioButton.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/jquery/RadioButton.js
@@ -35,7 +35,7 @@ goog.inherits(org.apache.flex.jquery.RadioButton,
 
 /**
  * @expose
- * @type {string|null}
+ * @type {?string}
  * The name of the radioGroup.
  */
 org.apache.flex.jquery.RadioButton.prototype.radioGroupName = null;
@@ -87,6 +87,7 @@ org.apache.flex.jquery.RadioButton.prototype.createElement =
 
 /**
  * @param {Object} doc the document for this item.
+ * @param {string} id the id in the document for this item.
  */
 org.apache.flex.jquery.RadioButton.prototype.setDocument =
     function(doc, id) {
@@ -116,7 +117,7 @@ org.apache.flex.jquery.RadioButton.prototype.initHandler =
 
 /**
  * @expose
- * @return {string|null} The groupName getter.
+ * @return {?string} The groupName getter.
  */
 org.apache.flex.jquery.RadioButton.prototype.get_groupName =
     function() {