diff options
| author | Rapptz <[email protected]> | 2016-01-30 06:07:06 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-01-30 06:07:06 -0500 |
| commit | 94d31834fc52ba2887b2f00b2756790c96cf22b9 (patch) | |
| tree | 63d6167ca4f0095b599a258aad22d760f2f54da4 /docs/api.rst | |
| parent | Update member references when status changes. (diff) | |
| download | discord.py-94d31834fc52ba2887b2f00b2756790c96cf22b9.tar.xz discord.py-94d31834fc52ba2887b2f00b2756790c96cf22b9.zip | |
Change enumerators into enumerations to please Voltana.
Diffstat (limited to 'docs/api.rst')
| -rw-r--r-- | docs/api.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/api.rst b/docs/api.rst index d541ba81..a7140895 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -331,13 +331,13 @@ Utility Functions .. _discord-api-enums: -Enumerators ------------- +Enumerations +------------- -The API provides some enumerators for certain types of strings to avoid the API +The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future. -All enumerators are subclasses of `enum`_. +All enumerations are subclasses of `enum`_. .. _enum: https://docs.python.org/3/library/enum.html |