Make JSDocs follow general conventions (#582)

* Make JSDocs follow usual conventions

* Fix StringResolvable name

* Make function lowercase
This commit is contained in:
Schuyler Cebulskie
2016-09-03 04:57:25 -04:00
committed by Amish Shah
parent 44efcf3f52
commit 27652b94af
33 changed files with 262 additions and 262 deletions

View File

@@ -14,20 +14,20 @@ class SequentialRequestHandler extends RequestHandler {
/**
* Whether this rate limiter is waiting for a response from a request
* @type {Boolean}
* @type {boolean}
*/
this.waiting = false;
/**
* The endpoint that this handler is handling
* @type {String}
* @type {string}
*/
this.endpoint = endpoint;
/**
* The time difference between Discord's Dates and the local computer's Dates. A positive number means the local
* computer's time is ahead of Discord's.
* @type {Number}
* @type {number}
*/
this.timeDifference = 0;
}