Skip to content

Commit

Permalink
Reinserted @see tags
Browse files Browse the repository at this point in the history
  • Loading branch information
snaterlicious committed Nov 27, 2014
1 parent e4b9964 commit 271b1e6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/List.js
Expand Up @@ -59,7 +59,7 @@ var SELF = wb.datamodel.List = util.inherit(
length: 0,

/**
* (see jQuery.fn.each)
* @see jQuery.fn.each
*
* @param {Function} fn
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Map.js
Expand Up @@ -53,7 +53,7 @@ $.extend( SELF.prototype, {
length: 0,

/**
* (see jQuery.fn.each)
* @see jQuery.fn.each
*
* @param {Function} fn
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Set.js
Expand Up @@ -79,7 +79,7 @@ var SELF = wb.datamodel.Set = util.inherit(
length: 0,

/**
* (see jQuery.fn.each)
* @see jQuery.fn.each
*
* @param {Function} fn
*/
Expand Down
10 changes: 7 additions & 3 deletions src/Statement.js
Expand Up @@ -35,7 +35,7 @@ $.extend( SELF.prototype, {
_references: null,

/**
* (see wikibase.statement.RANK)
* @see wikibase.datamodel.Statement.RANK
* @property {number}
* @private
*/
Expand Down Expand Up @@ -80,14 +80,18 @@ $.extend( SELF.prototype, {
},

/**
* @return {number} (see wikibase.datamodel.Statement.RANK)
* @see wikibase.datamodel.Statement.RANK
*
* @return {number}
*/
getRank: function() {
return this._rank;
},

/**
* @param {number} rank (see wikibase.datamodel.Statement.RANK)
* @see wikibase.datamodel.Statement.RANK
*
* @param {number} rank
*
* @throws {Error} if rank is not defined in wikibase.datamodel.Statement.RANK.
*/
Expand Down

0 comments on commit 271b1e6

Please sign in to comment.