diff --git a/src/behaviors/help.js b/src/behaviors/help.js index 5d978e2..e16afb4 100644 --- a/src/behaviors/help.js +++ b/src/behaviors/help.js @@ -23,7 +23,7 @@ function printSpecificHelp (botNick, options) { } let helpAction = (botNick, options) => { - if(options.length == 0) { + if(options.length === 0) { return printGeneralHelp(botNick); } else { return printSpecificHelp(botNick, options);