From bccbb550b08364df38d7ae8e03d162d8565a76cb Mon Sep 17 00:00:00 2001 From: Gryffon Bellish <39341355+PyroTechniac@users.noreply.github.com> Date: Fri, 19 Apr 2019 02:47:39 -0400 Subject: [PATCH] docs(Collector): specify the unit for `CollectionOptions#time` (#3219) --- src/structures/interfaces/Collector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/interfaces/Collector.js b/src/structures/interfaces/Collector.js index 1dbd61429..8e6d8463f 100644 --- a/src/structures/interfaces/Collector.js +++ b/src/structures/interfaces/Collector.js @@ -15,7 +15,7 @@ const EventEmitter = require('events'); /** * Options to be applied to the collector. * @typedef {Object} CollectorOptions - * @property {number} [time] How long to run the collector for + * @property {number} [time] How long to run the collector for in milliseconds * @property {boolean} [dispose=false] Whether to dispose data when it's deleted */