From 69f96aa3ba16386832387d605e3c5cf2b0d6f0c7 Mon Sep 17 00:00:00 2001 From: Ezra Fielding Date: Fri, 6 Apr 2018 21:13:47 +0200 Subject: [PATCH] Spell Check Basic Spelling errors fixed in docs --- docs/bot_tutorial/building_block_commands.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/bot_tutorial/building_block_commands.md b/docs/bot_tutorial/building_block_commands.md index 2ffeb02..1d31ff6 100644 --- a/docs/bot_tutorial/building_block_commands.md +++ b/docs/bot_tutorial/building_block_commands.md @@ -6,7 +6,7 @@ In the case of these examples, when you send `!help` or `!info` the bot will rep ## Basic commands -Creating commands in Disco is really easy because of the [Plugins](https://b1naryth1ef.github.io/disco/bot_tutorial/building_block_plugins.html) that are a core fundamential of Disco. For more info on them, read back in the [Plugins](https://b1naryth1ef.github.io/disco/bot_tutorial/building_block_plugins.html) section of this tutorial. Creating a basic command is done as follows: +Creating commands in Disco is really easy because of the [Plugins](https://b1naryth1ef.github.io/disco/bot_tutorial/building_block_plugins.html) that are a core fundamental of Disco. For more info on them, read back in the [Plugins](https://b1naryth1ef.github.io/disco/bot_tutorial/building_block_plugins.html) section of this tutorial. Creating a basic command is done as follows: First, create a Plugin class: ```py class myPlugin(Plugin): @@ -21,7 +21,7 @@ And there we go! Our very first command! ## Command arguments -Next, lets go on to some more advanced commands. Wye'll create an echo command that will respond with whatever we put in to it. +Next, lets go on to some more advanced commands. We'll create an echo command that will respond with whatever we put in to it. ```py @Plugin.command('echo', '') def on_echo_command(self, event, content):