@@ -205,7 +205,7 @@ def leave_conversation(self, conversation: typing.Union[Conversation, str]) -> N
205
205
"""Removes yourself from the conversation.
206
206
207
207
.. 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.
209
209
210
210
:param conversation: conversation token or :py:class:`~nc_py_api.talk.Conversation`.
211
211
"""
@@ -419,7 +419,7 @@ def create_poll(
419
419
:param conversation: conversation token or :py:class:`~nc_py_api.talk.Conversation`.
420
420
:param question: The question of the poll.
421
421
: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.
423
423
:param max_votes: The maximum amount of options a participant can vote for.
424
424
"""
425
425
token = conversation .token if isinstance (conversation , Conversation ) else conversation
@@ -493,7 +493,7 @@ def set_conversation_avatar(
493
493
:param avatar: Squared image with mimetype equal to PNG or JPEG or a tuple with emoji and optional
494
494
HEX color code(6 times ``0-9A-F``) without the leading ``#`` character.
495
495
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.
497
497
"""
498
498
require_capabilities ("spreed.features.avatar" , self ._session .capabilities )
499
499
token = conversation .token if isinstance (conversation , Conversation ) else conversation
0 commit comments