Fix typos

This commit is contained in:
1computer1 2019-06-03 18:44:43 -04:00
parent a48098bb8c
commit 8d2b7cd27e
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ class HelpCommand extends Command {
'Put a `>` before a code block or inline codeblock that starts with a language code to execute it.',
'You can add options, separated by semicolons, after the `>`.',
'',
'For list of enabled languages, use `languages` command.',
'For list of enabled languages, use the `>languages` command.',
'',
'See the readme for usage examples, supported languages, and options: <https://github.com/1Computer1/comp_iler>'
]);

View file

@ -13,7 +13,7 @@ class LanguagesCommand extends Command {
'**List of enabled languages (Name: Language Codes)**:',
...this.client.languageHandler.modules.map(lang => `${lang.name}: \`${lang.aliases.join('`, `')}\``),
'',
'See the readme for usage examples, supported langagues, and options: <https://github.com/1Computer/comp_iler>'
'See the readme for usage examples, supported languages, and options: <https://github.com/1Computer1/comp_iler>'
]);
}
}