diff --git a/Forwarding-messages.md b/Forwarding-messages.md index eae2bdb..e5d5e7b 100644 --- a/Forwarding-messages.md +++ b/Forwarding-messages.md @@ -11,9 +11,9 @@ from_entity = bar() to_entity = baz() 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? - to_peer=to_entity # who are we forwarding them to? + to_peer=to_entity # who or what channel are we forwarding them to? )) ```