From d240fe4182057762cd46c14a99316a2f8c30c999 Mon Sep 17 00:00:00 2001 From: Schuyler Cebulskie Date: Mon, 26 Sep 2016 23:21:44 -0400 Subject: [PATCH] Improve prepend/append descriptions --- src/structures/interface/TextBasedChannel.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/interface/TextBasedChannel.js b/src/structures/interface/TextBasedChannel.js index 8a4609a64..f1194c34e 100644 --- a/src/structures/interface/TextBasedChannel.js +++ b/src/structures/interface/TextBasedChannel.js @@ -38,8 +38,8 @@ class TextBasedChannel { * @typedef {Object} SplitOptions * @property {number} [maxLength=1950] Maximum character length per message piece * @property {string} [char='\n'] Character to split the message with - * @property {string} [prepend=''] Text to prepend to each middle piece - * @property {string} [append=''] Text to append to each middle piece + * @property {string} [prepend=''] Text to prepend to every piece except the first + * @property {string} [append=''] Text to append to every piece except the last */ /**