@@ -205,7 +205,7 @@ def leave_conversation(self, conversation: typing.Union[Conversation, str]) -> N
205205 """Removes yourself from the conversation.
206206
207207 .. note:: When the participant is a moderator or owner and there are no other moderators or owners left,
208- participant can not leave conversation.
208+ participant cannot leave conversation.
209209
210210 :param conversation: conversation token or :py:class:`~nc_py_api.talk.Conversation`.
211211 """
@@ -419,7 +419,7 @@ def create_poll(
419419 :param conversation: conversation token or :py:class:`~nc_py_api.talk.Conversation`.
420420 :param question: The question of the poll.
421421 :param options: Array of strings with the voting options.
422- :param hidden_results: Are the results hidden until the poll is closed and then only the summary is published.
422+ :param hidden_results: Should results be hidden until the poll is closed and then only the summary is published.
423423 :param max_votes: The maximum amount of options a participant can vote for.
424424 """
425425 token = conversation .token if isinstance (conversation , Conversation ) else conversation
@@ -493,7 +493,7 @@ def set_conversation_avatar(
493493 :param avatar: Squared image with mimetype equal to PNG or JPEG or a tuple with emoji and optional
494494 HEX color code(6 times ``0-9A-F``) without the leading ``#`` character.
495495
496- .. note:: Color omit to fallback to the default bright/dark mode icon background color.
496+ .. note:: When color omitted, fallback will be to the default bright/dark mode icon background color.
497497 """
498498 require_capabilities ("spreed.features.avatar" , self ._session .capabilities )
499499 token = conversation .token if isinstance (conversation , Conversation ) else conversation
0 commit comments