Fix utils.get example.

This commit is contained in:
Rapptz 2017-08-30 01:37:25 -04:00
parent 62df23633a
commit ede1771960

View File

@ -197,7 +197,7 @@ def get(iterable, **attrs):
.. code-block:: python3
channel = discord.utils.get(guild.channels, name='Foo', type=ChannelType.voice)
channel = discord.utils.get(guild.voice_channels, name='Foo', bitrate=64000)
Nested attribute matching: