Skip to content

Commit 7582489

Browse files
fix: grammar
1 parent c551a14 commit 7582489

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

stream_chat/base/channel.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -444,23 +444,23 @@ def unmute(self, user_id: str) -> Union[StreamResponse, Awaitable[StreamResponse
444444
def pin(self, user_id: str) -> Union[StreamResponse, Awaitable[StreamResponse]]:
445445
"""
446446
Pins a channel
447-
Allows a user to pin the channel (only for theirselves)
447+
Allows a user to pin the channel (only for themselves)
448448
"""
449449
pass
450450

451451
@abc.abstractmethod
452452
def unpin(self, user_id: str) -> Union[StreamResponse, Awaitable[StreamResponse]]:
453453
"""
454454
Unpins a channel
455-
Allows a user to unpin the channel (only for theirselves)
455+
Allows a user to unpin the channel (only for themselves)
456456
"""
457457
pass
458458

459459
@abc.abstractmethod
460460
def archive(self, user_id: str) -> Union[StreamResponse, Awaitable[StreamResponse]]:
461461
"""
462462
Pins a channel
463-
Allows a user to archive the channel (only for theirselves)
463+
Allows a user to archive the channel (only for themselves)
464464
"""
465465
pass
466466

@@ -470,7 +470,7 @@ def unarchive(
470470
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
471471
"""
472472
Unpins a channel
473-
Allows a user to unpin the channel (only for theirselves)
473+
Allows a user to unpin the channel (only for themselves)
474474
"""
475475
pass
476476

0 commit comments

Comments
 (0)