aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2015-12-17 04:11:38 -0500
committerRapptz <[email protected]>2015-12-17 04:11:38 -0500
commit78e95ef755d06b41da0c48c0a56d9ff585fbb11f (patch)
treeee34b6f2fc109cb24c3b238121050c4d6408e25e
parentFix Channel.permissions_for attribute error. (diff)
downloaddiscord.py-78e95ef755d06b41da0c48c0a56d9ff585fbb11f.tar.xz
discord.py-78e95ef755d06b41da0c48c0a56d9ff585fbb11f.zip
Documentation fixes.
-rw-r--r--discord/client.py6
-rw-r--r--discord/voice_client.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/discord/client.py b/discord/client.py
index ed87c0e6..fb55039f 100644
--- a/discord/client.py
+++ b/discord/client.py
@@ -1331,12 +1331,12 @@ class Client:
The game_id parameter is a numeric ID (not a string) that represents
a game being played currently. The list of game_id to actual games changes
constantly and would thus be out of date pretty quickly. An old version of
- the game_id database can be seen `here`_ to help you get started.
+ the game_id database can be seen `here <game_list>`_ to help you get started.
The idle parameter is a boolean parameter that indicates whether the
client should go idle or not.
- .. _here: https://gist.github.com/Rapptz/a82b82381b70a60c281b
+ .. _game_list: https://gist.github.com/Rapptz/a82b82381b70a60c281b
Parameters
----------
@@ -1636,7 +1636,7 @@ class Client:
def get_bans(self, server):
"""|coro|
- Retrieves all the :class:`User`s that are banned from the specified
+ Retrieves all the :class:`User` s that are banned from the specified
server.
You must have proper permissions to get this information.
diff --git a/discord/voice_client.py b/discord/voice_client.py
index 22471c99..24a4081a 100644
--- a/discord/voice_client.py
+++ b/discord/voice_client.py
@@ -416,7 +416,7 @@ class VoiceClient:
The operations that can be done on the player are the same as those in
:meth:`create_stream_player`.
- .. _here: https://github.com/rg3/youtube-dl/blob/master/youtube_dl/YoutubeDL.py#L117-L265
+ .. _ytdl: https://github.com/rg3/youtube-dl/blob/master/youtube_dl/YoutubeDL.py#L117-L265
Examples
----------
@@ -434,7 +434,7 @@ class VoiceClient:
to ``ffmpeg`` or ``avconv`` to convert to PCM bytes.
options : dict
A dictionary of options to pass into the ``YoutubeDL`` instance.
- See `here`_ for more details.
+ See `the documentation <ydl>`_ for more details.
use_avconv: bool
Use ``avconv`` instead of ``ffmpeg``. Passes the appropriate
flags to ``youtube-dl`` as well.