@ -6,7 +6,7 @@ In the case of these examples, when you send `!help` or `!info` the bot will rep
## Basic commands
## 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:
First, create a Plugin class:
```py
```py
class myPlugin(Plugin):
class myPlugin(Plugin):
@ -21,7 +21,7 @@ And there we go! Our very first command!
## Command arguments
## 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.