diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 48953e511..414964dd1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,7 +3,7 @@ 1. [Fork the repository](https://github.com/eritislami/evobot/fork) 2. Clone your fork: `git clone https://github.com/your-username/evobot.git` 3. Create your feature branch: `git checkout -b my-new-feature` -4. Stage add changes to staging `git add .` +4. Stage changes `git add .` 5. Commit your changes: `cz` OR `npm run commit` do not use `git commit` 6. Push to the branch: `git push origin my-new-feature` 7. Submit a pull request diff --git a/README.md b/README.md index de0b43f92..87655b2a2 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ Examples: `1` or `1,2,3` 1. [Fork the repository](https://github.com/eritislami/evobot/fork) 2. Clone your fork: `git clone https://github.com/your-username/evobot.git` 3. Create your feature branch: `git checkout -b my-new-feature` -4. Stage add changes to staging `git add .` +4. Stage changes `git add .` 5. Commit your changes: `cz` OR `npm run commit` do not use `git commit` 6. Push to the branch: `git push origin my-new-feature` 7. Submit a pull request diff --git a/commands/play.js b/commands/play.js index 9e7b4460c..9700d59af 100644 --- a/commands/play.js +++ b/commands/play.js @@ -108,7 +108,7 @@ module.exports = { const results = await youtube.searchVideos(search, 1, { part: "snippet" }); if (!results.length) { - message.reply(i18n.__mf("play.songNotFound")).catch(console.error); + message.reply(i18n.__("play.songNotFound")).catch(console.error); return; }