From f73eb087c99a0ee73b9a46500225464ab866c625 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 13 May 2017 18:48:14 -0400 Subject: Use describe instead of tables for supported operations. --- discord/member.py | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) (limited to 'discord/member.py') diff --git a/discord/member.py b/discord/member.py index c5d0f45c..7dc08df4 100644 --- a/discord/member.py +++ b/discord/member.py @@ -112,19 +112,23 @@ class Member(discord.abc.Messageable): This implements a lot of the functionality of :class:`User`. - Supported Operations: - - +-----------+-----------------------------------------------+ - | Operation | Description | - +===========+===============================================+ - | x == y | Checks if two members are equal. | - +-----------+-----------------------------------------------+ - | x != y | Checks if two members are not equal. | - +-----------+-----------------------------------------------+ - | hash(x) | Return the member's hash. | - +-----------+-----------------------------------------------+ - | str(x) | Returns the member's name with discriminator. | - +-----------+-----------------------------------------------+ + .. describe:: x == y + + Checks if two members are equal. + Note that this works with :class:`User` instances too. + + .. describe:: x != y + + Checks if two members are not equal. + Note that this works with :class:`User` instances too. + + .. describe:: hash(x) + + Returns the member's hash. + + .. describe:: str(x) + + Returns the member's name with the discriminator. Attributes ---------- -- cgit v1.2.3