From 63e50bc3693437aad4c0c7c6f4e0cc306bc61258 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Wed, 11 May 2022 03:54:25 -0400 Subject: [PATCH] Don't hotlink typing.List, typing.Dict, or typing.Tuple --- docs/ext/commands/commands.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ext/commands/commands.rst b/docs/ext/commands/commands.rst index dbae2e871..eec8f5099 100644 --- a/docs/ext/commands/commands.rst +++ b/docs/ext/commands/commands.rst @@ -939,9 +939,9 @@ Likewise, use of the ``name`` keyword argument allows you to pass renames for th Note that in hybrid command form, a few annotations are unsupported due to Discord limitations: -- :data:`typing.Tuple` -- :data:`typing.List` -- :data:`typing.Dict` +- ``typing.Tuple`` +- ``typing.List`` +- ``typing.Dict`` .. note::