zulip: Fix argument name in add/remove reaction example comment.

The actual argument is supposed to be named `reaction_type`, not
`emoji_type`.
This commit is contained in:
Eeshan Garg 2019-03-02 19:12:01 -03:30
parent d43b9328f0
commit 3a2e85c2b1

View file

@ -828,7 +828,7 @@ class Client(object):
'message_id': '100', 'message_id': '100',
'emoji_name': 'joy', 'emoji_name': 'joy',
'emoji_code': '1f602', 'emoji_code': '1f602',
'emoji_type': 'unicode_emoji' 'reaction_type': 'unicode_emoji'
}) })
{'result': 'success', 'msg': ''} {'result': 'success', 'msg': ''}
''' '''
@ -847,7 +847,7 @@ class Client(object):
'message_id': '100', 'message_id': '100',
'emoji_name': 'joy', 'emoji_name': 'joy',
'emoji_code': '1f602', 'emoji_code': '1f602',
'emoji_type': 'unicode_emoji' 'reaction_type': 'unicode_emoji'
}) })
{'msg': '', 'result': 'success'} {'msg': '', 'result': 'success'}
''' '''