diff --git a/client/src/telethon/_impl/client/types/dialog.py b/client/src/telethon/_impl/client/types/dialog.py index 54357a11..56cf63d2 100644 --- a/client/src/telethon/_impl/client/types/dialog.py +++ b/client/src/telethon/_impl/client/types/dialog.py @@ -49,7 +49,7 @@ class Dialog(metaclass=NoPublicConstructor): @property def chat(self) -> Chat: """ - The chat where messages are sent in this dialog. + The :term:`chat` where messages are sent in this dialog. """ return self._chat_map[peer_id(self._raw.peer)] diff --git a/client/src/telethon/_impl/client/types/draft.py b/client/src/telethon/_impl/client/types/draft.py index 4568c613..0d41297f 100644 --- a/client/src/telethon/_impl/client/types/draft.py +++ b/client/src/telethon/_impl/client/types/draft.py @@ -56,7 +56,7 @@ class Draft(metaclass=NoPublicConstructor): @property def chat(self) -> Chat: """ - The chat where the draft is saved. + The :term:`chat` where the draft is saved. This is also the chat where the message will be sent to by :meth:`send`. """