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 25ab2a3 commit d17eb6c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/collision/Pair.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ var Pair = {};
* Description
* @method create
* @param {collision} collision
* @param {timestamp} timestamp
* @return {pair} A new pair
*/
Pair.create = function(collision, timestamp) {
Expand Down Expand Up @@ -44,6 +45,7 @@ var Pair = {};
* @method update
* @param {pair} pair
* @param {collision} collision
* @param {timestamp} timestamp
*/
Pair.update = function(pair, collision, timestamp) {
var contacts = pair.contacts,
Expand Down Expand Up @@ -83,6 +85,7 @@ var Pair = {};
* @method setActive
* @param {pair} pair
* @param {bool} isActive
* @param {timestamp} timestamp
*/
Pair.setActive = function(pair, isActive, timestamp) {
if (isActive) {
Expand Down

0 comments on commit d17eb6c

Please sign in to comment.