From 25b654d49428c9c93841f0680022bc73869ec724 Mon Sep 17 00:00:00 2001 From: bdistin Date: Thu, 17 May 2018 20:30:19 -0500 Subject: [PATCH] consistency is king (#2554) --- src/util/Util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/Util.js b/src/util/Util.js index 5c50d5e5f..5fe1b9a44 100644 --- a/src/util/Util.js +++ b/src/util/Util.js @@ -51,7 +51,7 @@ class Util { /** * Splits a string into multiple chunks at a designated character that do not exceed a specific length. * @param {string} text Content to split - * @param {SplitOptions} [options] Options controlling the behaviour of the split + * @param {SplitOptions} [options] Options controlling the behavior of the split * @returns {string|string[]} */ static splitMessage(text, { maxLength = 2000, char = '\n', prepend = '', append = '' } = {}) {