Skip to content

Commit ef818ef

Browse files
committed
Updated README
1 parent 51ecef8 commit ef818ef

File tree

3 files changed

+29
-15
lines changed

3 files changed

+29
-15
lines changed

README.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Introduction
1919

2020
Welcome to DBE! Have you ever wondered how to create your **own** discord bot?
2121
Here you can learn to create a personalized discord bot from scratch.
22-
DBE utilzes the programming language Python and the `discord.py`_ library
22+
DBE utilizes the programming language Python and the `discord.py`_ library
2323

2424
Purposes
2525
--------
@@ -35,12 +35,12 @@ Creating a bot account
3535
======================
3636

3737
1. Go to `Discord Developer Page <https://discordapp.com/developers/>`_ and
38-
login or register an Discord User Account (you can loging with your personal discord account)
38+
login or register an Discord User Account (you can login with your personal discord account)
3939
2. Go to `My Apps <https://discordapp.com/developers/applications/me>`_
4040
3. Click on `New App <https://discordapp.com/developers/applications/me/create>`_
4141
4. Fill in "App Name" with your bot's name (this will be your bot name, it cannot be changed)
4242
5. Fill in the optional "App Description" with the description and upload a bot avatar for "App Icon"
43-
6. Click on "Create App" (note: All previously added details are changable)
43+
6. Click on "Create App" (note: All previously added details are changeable)
4444
7. Go to `My Apps <https://discordapp.com/developers/applications/me>`_ and select the bot you just created
4545
8. Scroll down to the "Bot" section, click "Create a Bot User", and conform your choice ("click Yes, do it!")
4646
9. Click on the check mark for "Public Bot"
@@ -71,22 +71,22 @@ Rewrite and async is **not** compatible.
7171
After you chose the version you want to use, go to the directory in this GitHub repo with the version name.
7272
The rest of the dependencies installation tutorial will be in the README.rtf of that directory.
7373

74-
Continuation
75-
============
74+
Further Reading
75+
===============
7676

7777
The rest of the introduction will continue in the README.rst of the rewrite or async directories.
7878

7979

8080

81-
:sub:`Discord Bot Examples (DBE) is not affliated in any way with the discord.py library or the development of discord.py.`
82-
:sub:`DBE is an example/turtorial repository developed by Taku. Read the LICENSE file for more information.`
81+
:sub:`Discord Bot Examples (DBE) is not affiliated in any way with the discord.py library or the development of discord.py.`
82+
:sub:`DBE is an example/tutorial repository developed by Taku. Read the LICENSE file for more information.`
8383

8484

8585

8686
..
8787
links:
8888
89-
.. _discord.py: https://discordpy.readthedocs.io/en/
89+
.. _discord.py: https://github.com/Rapptz/discord.py
9090

9191
..
9292
badges links:

async/README.rst

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ Installing discord.py
1919

2020
(Replace all ``<prefix>`` with the aforementioned prefix)
2121

22-
First uninstall any previously installed version of discord.py.
22+
First uninstall any previously installed version of `discord.py`_.
2323
In Terminal, CMD, or any command-line console, type in the following:
2424

2525
``<prefix> -m pip uninstall discord.py``
2626

27-
And install the async version of discord.py:
27+
And install the async version of `discord.py`_:
2828

2929
``<prefix> -m pip install -U discord.py[voice]``
3030

@@ -42,9 +42,16 @@ Run DBE examples
4242
4. In the console, type in: ``<prefix> DiscordBotExamples/async/<filename>.py``
4343
5. And... voila! Go to discord and see your bot in action
4444

45+
==============
4546
Examples Index
4647
==============
4748

4849
1. ``introduction.py``
50+
51+
..
52+
links:
53+
54+
.. _discord.py: https://discordpy.readthedocs.io/en/async
55+
4956

5057

rewrite/README.rst

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
====================================
1+
======================================
22
Welcome to Discord.py Rewrite Examples
3-
====================================
3+
======================================
44

55
Installing
66
==========
@@ -19,12 +19,12 @@ Installing discord.py
1919

2020
(Replace ``<prefix>`` with the aforementioned prefix)
2121

22-
First uninstall any previously installed version of discord.py.
22+
First uninstall any previously installed version of `discord.py`_.
2323
In Terminal, CMD, or any command-line console, type in the following:
2424

2525
``<prefix> -m pip uninstall discord.py``
2626

27-
And install the rewrite version of discord.py:
27+
And install the rewrite version of `discord.py`_:
2828

2929
``<prefix> -m pip install -U https://github.com/Rapptz/discord.py/archive/rewrite.zip#egg=discord.py[voice]``
3030

@@ -42,9 +42,16 @@ Run DBE examples
4242
4. In the console, type in: ``<prefix> DiscordBotExamples/rewrite/<filename>.py``
4343
5. And... voila! Go to discord and see your bot in action
4444

45+
46+
47+
==============
4548
Examples Index
4649
==============
4750

4851
1. ``introduction.py``
4952

50-
53+
..
54+
links:
55+
56+
.. _discord.py: https://discordpy.readthedocs.io/en/rewrite
57+

0 commit comments

Comments
 (0)