From 5fb4e257c8b44d74d1e3cb78932e4d42388e0422 Mon Sep 17 00:00:00 2001 From: Vap0r1ze Date: Sun, 27 Nov 2016 17:38:42 -0500 Subject: [PATCH] Escape the backslash (#931) --- src/structures/Message.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/Message.js b/src/structures/Message.js index 39a40b6b4..d0351b9e5 100644 --- a/src/structures/Message.js +++ b/src/structures/Message.js @@ -439,7 +439,7 @@ class Message { * @returns {Promise} * @example * // reply to a message - * message.reply('Hey, I\'m a reply!') + * message.reply('Hey, I\\'m a reply!') * .then(msg => console.log(`Sent a reply to ${msg.author}`)) * .catch(console.error); */