From fc65f253f72ea870439c77461d0e6be9d1cc25b7 Mon Sep 17 00:00:00 2001 From: VOVOplay Date: Wed, 8 Jul 2026 22:17:28 +0200 Subject: [PATCH] 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 42a4c6c36..008e06af9 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