diff options
| author | Rapptz <[email protected]> | 2017-06-03 02:46:20 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-06-03 02:46:20 -0400 |
| commit | 6135d4cd45313565f970d8ed3e6644ba563698d6 (patch) | |
| tree | 3cffcd0b8ed031ef02bc5ced21b836ce53208c22 | |
| parent | Fix mistake in migrating docs. (diff) | |
| download | discord.py-6135d4cd45313565f970d8ed3e6644ba563698d6.tar.xz discord.py-6135d4cd45313565f970d8ed3e6644ba563698d6.zip | |
Fix typing/history showing up twice in the documentation.
| -rw-r--r-- | docs/api.rst | 12 | ||||
| -rw-r--r-- | docs/ext/commands/api.rst | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/docs/api.rst b/docs/api.rst index 0fb2134d..cb0716a0 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -1550,7 +1550,7 @@ module, others which are not. .. autoclass:: discord.abc.Messageable :members: - :exclude-members: history typing + :exclude-members: history, typing .. autocomethod:: discord.abc.Messageable.history :async-for: @@ -1609,7 +1609,7 @@ User .. autoclass:: User :members: :inherited-members: - :exclude-members: history typing + :exclude-members: history, typing .. autocomethod:: history :async-for: @@ -1667,7 +1667,7 @@ Member .. autoclass:: Member :members: :inherited-members: - :exclude-members: history typing + :exclude-members: history, typing .. autocomethod:: history :async-for: @@ -1699,7 +1699,7 @@ TextChannel .. autoclass:: TextChannel :members: :inherited-members: - :exclude-members: history typing + :exclude-members: history, typing .. autocomethod:: history :async-for: @@ -1720,7 +1720,7 @@ DMChannel .. autoclass:: DMChannel :members: :inherited-members: - :exclude-members: history typing + :exclude-members: history, typing .. autocomethod:: history :async-for: @@ -1734,7 +1734,7 @@ GroupChannel .. autoclass:: GroupChannel :members: :inherited-members: - :exclude-members: history typing + :exclude-members: history, typing .. autocomethod:: history :async-for: diff --git a/docs/ext/commands/api.rst b/docs/ext/commands/api.rst index d3affde9..897f149c 100644 --- a/docs/ext/commands/api.rst +++ b/docs/ext/commands/api.rst @@ -123,7 +123,7 @@ Context .. autoclass:: discord.ext.commands.Context :members: :inherited-members: - :exclude-members: history typing + :exclude-members: history, typing .. autocomethod:: discord.ext.commands.Context.history :async-for: |