From a118cfef9aed6abbfdbb0cee901e6df86599c73f Mon Sep 17 00:00:00 2001 From: dan levine Date: Wed, 22 Nov 2017 23:39:34 -0500 Subject: [PATCH] clarifying the inputs --- Forwarding-messages.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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? )) ```