From 6d494585f5d8e4023ff9ce0039571eadb11f4e19 Mon Sep 17 00:00:00 2001 From: UltimateSppy765 Date: Thu, 24 Mar 2022 04:08:22 +0530 Subject: [PATCH] Correct documentation for TextInput.custom_id --- discord/ui/text_input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ui/text_input.py b/discord/ui/text_input.py index d9bfbfc21..30c5ff9cc 100644 --- a/discord/ui/text_input.py +++ b/discord/ui/text_input.py @@ -122,7 +122,7 @@ class TextInput(Item[V]): @property def custom_id(self) -> str: - """:class:`str`: The ID of the select menu that gets received during an interaction.""" + """:class:`str`: The ID of the text input that gets received during an interaction.""" return self._underlying.custom_id @custom_id.setter