From f1bfd55233ad49293159f803e9feb9d469550593 Mon Sep 17 00:00:00 2001 From: Schuyler Cebulskie Date: Sat, 24 Sep 2016 02:21:06 -0400 Subject: [PATCH] Fix Guild.createChannel example --- src/structures/Guild.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/Guild.js b/src/structures/Guild.js index 837a90759..a14b554b6 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -512,7 +512,7 @@ class Guild { * @returns {Promise} * @example * // create a new text channel - * guild.createChannel('new general', 'text') + * guild.createChannel('new-general', 'text') * .then(channel => console.log(`Created new channel ${channel}`)) * .catch(console.log); */