From 73829bb777a279840819d467bac7075ac42e084b Mon Sep 17 00:00:00 2001 From: VOVOplay Date: Sun, 31 May 2026 14:53:56 +0200 Subject: [PATCH] docs: fix typo in ui.RadioGroup.value docstring --- discord/ui/radio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ui/radio.py b/discord/ui/radio.py index 4c02c6638..6d83b97d2 100644 --- a/discord/ui/radio.py +++ b/discord/ui/radio.py @@ -113,7 +113,7 @@ class RadioGroup(Item[V]): @property def value(self) -> Optional[str]: - """Optional[:class:`str`]: The value have been selected by the user, if any.""" + """Optional[:class:`str`]: The value that has been selected by the user, if any.""" return self._value @property