clarifying the inputs

dan levine 2017-11-22 23:39:34 -05:00
parent 36403b95d9
commit a118cfef9a

@ -11,9 +11,9 @@ from_entity = bar()
to_entity = baz() to_entity = baz()
client(ForwardMessagesRequest( client(ForwardMessagesRequest(
from_peer=from_entity, # who sent these messages? from_peer=from_entity, # who sent these messages or what channel sent in?
id=[msg.id for msg in messages], # which are the messages? id=[msg.id for msg in messages], # which are the messages?
to_peer=to_entity # who are we forwarding them to? to_peer=to_entity # who or what channel are we forwarding them to?
)) ))
``` ```