aboutsummaryrefslogtreecommitdiff
path: root/discord/channel.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2015-11-28 19:51:32 -0500
committerRapptz <[email protected]>2015-11-28 19:51:32 -0500
commit38e83f09990b99b97ca2843f4e3a18f96aae7774 (patch)
tree8ed4b6576943de5d048e0bbcc1042de4d9144533 /discord/channel.py
parentRemove afk_channel_id and replace it with afk_channel. (diff)
downloaddiscord.py-38e83f09990b99b97ca2843f4e3a18f96aae7774.tar.xz
discord.py-38e83f09990b99b97ca2843f4e3a18f96aae7774.zip
"An array" -> "A list" for documentation purposes.
Diffstat (limited to 'discord/channel.py')
-rw-r--r--discord/channel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/channel.py b/discord/channel.py
index fa546890..32b98fda 100644
--- a/discord/channel.py
+++ b/discord/channel.py
@@ -58,11 +58,11 @@ class Channel(object):
The channel type. Usually ``'voice'`` or ``'text'``.
.. attribute:: changed_roles
- An array of :class:`Roles` that have been overridden from their default
+ A list of :class:`Roles` that have been overridden from their default
values in the :attr:`Server.roles` attribute.
.. attribute:: voice_members
- An array of :class:`Members` that are currently inside this voice channel.
+ A list of :class:`Members` that are currently inside this voice channel.
If :attr:`type` is not ``'voice'`` then this is always an empty array.
"""