diff options
| author | Steve C <[email protected]> | 2017-08-29 15:48:10 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-08-29 15:48:10 -0400 |
| commit | 221df0ab0289c8651704e0461f4a69ee3b52dc8e (patch) | |
| tree | b846212747d3969b44f48ccfda1cad116706efd1 /discord/embeds.py | |
| parent | [commands] Add CooldownMapping.from_cooldown factory classmethod. (diff) | |
| download | discord.py-221df0ab0289c8651704e0461f4a69ee3b52dc8e.tar.xz discord.py-221df0ab0289c8651704e0461f4a69ee3b52dc8e.zip | |
Update embed property doc grammar
Diffstat (limited to 'discord/embeds.py')
| -rw-r--r-- | discord/embeds.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/discord/embeds.py b/discord/embeds.py index 2e18687b..77d0c7b9 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -173,7 +173,7 @@ class Embed: @property def footer(self): - """Returns a ``EmbedProxy`` denoting the footer contents. + """Returns an ``EmbedProxy`` denoting the footer contents. See :meth:`set_footer` for possible values you can access. @@ -206,7 +206,7 @@ class Embed: @property def image(self): - """Returns a ``EmbedProxy`` denoting the image contents. + """Returns an ``EmbedProxy`` denoting the image contents. Possible attributes you can access are: @@ -239,7 +239,7 @@ class Embed: @property def thumbnail(self): - """Returns a ``EmbedProxy`` denoting the thumbnail contents. + """Returns an ``EmbedProxy`` denoting the thumbnail contents. Possible attributes you can access are: @@ -272,7 +272,7 @@ class Embed: @property def video(self): - """Returns a ``EmbedProxy`` denoting the video contents. + """Returns an ``EmbedProxy`` denoting the video contents. Possible attributes include: @@ -286,7 +286,7 @@ class Embed: @property def provider(self): - """Returns a ``EmbedProxy`` denoting the provider contents. + """Returns an ``EmbedProxy`` denoting the provider contents. The only attributes that might be accessed are ``name`` and ``url``. @@ -296,7 +296,7 @@ class Embed: @property def author(self): - """Returns a ``EmbedProxy`` denoting the author contents. + """Returns an ``EmbedProxy`` denoting the author contents. See :meth:`set_author` for possible values you can access. |