From 2bb5aa1fda2df0c5a92db4d8a4813a5d12404a9d Mon Sep 17 00:00:00 2001 From: Schuyler Cebulskie Date: Sun, 20 Nov 2016 18:05:01 -0500 Subject: [PATCH] Change Collection description --- src/util/Collection.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/util/Collection.js b/src/util/Collection.js index 79ee0f3a2..4de19f57d 100644 --- a/src/util/Collection.js +++ b/src/util/Collection.js @@ -1,5 +1,6 @@ /** - * A utility class to help make it easier to access the data stores + * A Map with additional utility methods. This is used throughout discord.js rather than Arrays for anything that has + * an ID, for significantly improved performance and ease-of-use. * @extends {Map} */ class Collection extends Map {