Update on_group_join docs

This commit is contained in:
apple502j 2019-05-18 12:58:12 +09:00 committed by GitHub
parent 1fac7a7e71
commit 007b7ebf3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -562,8 +562,7 @@ to handle it, which defaults to print a traceback and ignoring the exception.
.. function:: on_group_join(channel, user) .. function:: on_group_join(channel, user)
on_group_remove(channel, user) on_group_remove(channel, user)
Called when someone joins or leaves a group, i.e. a :class:`PrivateChannel` Called when someone joins or leaves a :class:`GroupChannel`.
with a :attr:`PrivateChannel.type` of :attr:`ChannelType.group`.
:param channel: The group that the user joined or left. :param channel: The group that the user joined or left.
:param user: The user that joined or left. :param user: The user that joined or left.