diff options
| author | MrKomodoDragon <[email protected]> | 2021-08-10 19:12:36 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-10 22:12:36 -0400 |
| commit | a9d9f496f029c1028a7e43acf5ab177fa6404b38 (patch) | |
| tree | e79d53b756c9e9db8ee49529e7004bed552400ed /discord | |
| parent | Undo coercion of partial DMChannel to PartialMessageable (diff) | |
| download | discord.py-a9d9f496f029c1028a7e43acf5ab177fa6404b38.tar.xz discord.py-a9d9f496f029c1028a7e43acf5ab177fa6404b38.zip | |
Add missing ] in docs for StageInstance.channel
Diffstat (limited to 'discord')
| -rw-r--r-- | discord/stage_instance.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/stage_instance.py b/discord/stage_instance.py index e0e90453..554851f2 100644 --- a/discord/stage_instance.py +++ b/discord/stage_instance.py @@ -105,7 +105,7 @@ class StageInstance(Hashable): @cached_slot_property('_cs_channel') def channel(self) -> Optional[StageChannel]: - """Optional[:class:`StageChannel`: The guild that stage instance is running in.""" + """Optional[:class:`StageChannel`]: The channel that stage instance is running in.""" return self._state.get_channel(self.channel_id) def is_public(self) -> bool: |