Skip to content

Commit

Permalink
Fixing JSDocs for fuzzy maps
Browse files Browse the repository at this point in the history
  • Loading branch information
Yomguithereal committed Mar 11, 2018
1 parent e07f8ee commit d905df1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fuzzy-map.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ FuzzyMap.prototype.get = function(key) {
/**
* Method used to test the existence of an item in the map.
*
* @param {any} key - Key to use.
* @param {any} key - Key to check.
* @return {boolean}
*/
FuzzyMap.prototype.has = function(key) {
Expand Down
4 changes: 2 additions & 2 deletions fuzzy-multi-map.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ FuzzyMultiMap.prototype.get = function(key) {
/**
* Method used to test the existence of an item in the map.
*
* @param {any} key - Key to use.
* @return {any}
* @param {any} key - Key to check.
* @return {boolean}
*/
FuzzyMultiMap.prototype.has = function(key) {
key = this.readHashFunction(key);
Expand Down

0 comments on commit d905df1

Please sign in to comment.