Skip to content

Commit

Permalink
Update JSDoc
Browse files Browse the repository at this point in the history
This might need fixing later, I don't know if I did it right.
  • Loading branch information
PlNG committed Jan 20, 2015
1 parent 18e0642 commit 71ef6c2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/collision/Pairs.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ var Pairs = {};
* @method update
* @param {object} pairs
* @param {collision[]} collisions
* @param {timestamp} timestamp
*/
Pairs.update = function(pairs, collisions, timestamp) {
var pairsList = pairs.list,
Expand Down Expand Up @@ -96,6 +97,7 @@ var Pairs = {};
* Description
* @method removeOld
* @param {object} pairs
* @param {timestamp} timestamp
*/
Pairs.removeOld = function(pairs, timestamp) {
var pairsList = pairs.list,
Expand Down Expand Up @@ -133,9 +135,9 @@ var Pairs = {};

/**
* Clears the given pairs structure
* @method create
* @param {object} options
* @method clear
* @param {pairs} pairs
* @return {pairs} pairs
*/
Pairs.clear = function(pairs) {
pairs.table = {};
Expand All @@ -146,4 +148,4 @@ var Pairs = {};
return pairs;
};

})();
})();

0 comments on commit 71ef6c2

Please sign in to comment.