diff options
| author | jack1142 <[email protected]> | 2021-08-28 00:13:55 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-27 18:13:55 -0400 |
| commit | b12fe223b2ea51728bd6d9d0036dfb90c1fa4b09 (patch) | |
| tree | 3f00cef1d21a20e4e29061614ad146a8c906d523 | |
| parent | [tasks] Improve typing parity (diff) | |
| download | discord.py-b12fe223b2ea51728bd6d9d0036dfb90c1fa4b09.tar.xz discord.py-b12fe223b2ea51728bd6d9d0036dfb90c1fa4b09.zip | |
Fix description of Data Classes section in api.rst
| -rw-r--r-- | docs/api.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api.rst b/docs/api.rst index 1f73a185..0a9ba5cc 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -3931,7 +3931,7 @@ most of these yourself, even if they can also be used to hold attributes. Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes. -The only exception to this rule is :class:`abc.Snowflake`, which is made with +The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind. |