diff --git a/discord/ext/bridge/core.py b/discord/ext/bridge/core.py index 02a545c053..959b1819f1 100644 --- a/discord/ext/bridge/core.py +++ b/discord/ext/bridge/core.py @@ -591,7 +591,8 @@ async def convert(self, ctx, arg: bool): class BridgeOption(Option, Converter): - """Slash command option for bridge commands. Otherwise equivalent in every way to :class:`discord.Option`.""" + """Represents a selectable slash command option and a prefixed command argument for bridge commands. + """ async def convert(self, ctx, argument: str) -> Any: try: diff --git a/docs/ext/bridge/api.rst b/docs/ext/bridge/api.rst index 321d04dd71..75dfdb51de 100644 --- a/docs/ext/bridge/api.rst +++ b/docs/ext/bridge/api.rst @@ -163,3 +163,8 @@ Option BridgeOption ~~~~~~~~~~~~ + +.. attributetable:: discord.ext.bridge.BridgeOption + +.. autoclass:: discord.ext.bridge.BridgeOption + :members: