Skip to content
This repository has been archived by the owner on Aug 1, 2021. It is now read-only.

Commit

Permalink
Fixing some grammar. (#70)
Browse files Browse the repository at this point in the history
Changed "Now lets" to "Now let's" on line 24
  • Loading branch information
Dropheart authored and b1naryth1ef committed Jan 4, 2018
1 parent 9128844 commit 3081a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/bot_tutorial/first_steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The \_\_init\_\_.py file is required for Python to find your plugin, but it can
{% endhint %}


Now lets setup the configuration file. To start off with we'll paste the following template in and modify our token key (`MY_BOT_TOKEN_HERE`) to be the token we obtained above. The plugins section tells disco what plugins to load, based on a module path (similar to how Python imports work). In this example we're asking disco to load the plugin contained in the tutorial file within the plugins directory (or "module"). Disco by default loads the first plugin it finds within the module, so you want to make sure each plugin class is contained within its own file.
Now let's setup the configuration file. To start off with we'll paste the following template in and modify our token key (`MY_BOT_TOKEN_HERE`) to be the token we obtained above. The plugins section tells disco what plugins to load, based on a module path (similar to how Python imports work). In this example we're asking disco to load the plugin contained in the tutorial file within the plugins directory (or "module"). Disco by default loads the first plugin it finds within the module, so you want to make sure each plugin class is contained within its own file.

```yaml
token: 'MY_BOT_TOKEN_HERE'
Expand Down

0 comments on commit 3081a89

Please sign in to comment.