diff options
| author | Michael <[email protected]> | 2020-09-23 00:19:35 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-09-23 03:19:35 -0400 |
| commit | 93fa46713a198baf08ab1e760be1adfdcb852c97 (patch) | |
| tree | d73bff9c85cc531d992e77a9e01950f7668731b4 /discord/message.py | |
| parent | Add support for message_reference on Message object (diff) | |
| download | discord.py-93fa46713a198baf08ab1e760be1adfdcb852c97.tar.xz discord.py-93fa46713a198baf08ab1e760be1adfdcb852c97.zip | |
Fix and add documentation
Diffstat (limited to 'discord/message.py')
| -rw-r--r-- | discord/message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/message.py b/discord/message.py index 8e6fdde7..4ba2a826 100644 --- a/discord/message.py +++ b/discord/message.py @@ -613,7 +613,7 @@ class Message: @utils.cached_slot_property('_cs_clean_content') def clean_content(self): - """A property that returns the content in a "cleaned up" + """:class:`str`: A property that returns the content in a "cleaned up" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``. |