From 8077fdeddba09c345aab7294389f75d9fcd51bcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Asiel=20D=C3=ADaz=20Ben=C3=ADtez?= Date: Wed, 14 Aug 2019 16:02:20 -0400 Subject: [PATCH] Update examples.rst just replaced `send_text_message` with `send_text` --- python/doc/examples.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/doc/examples.rst b/python/doc/examples.rst index 1074a0fb8..94e15e754 100644 --- a/python/doc/examples.rst +++ b/python/doc/examples.rst @@ -22,7 +22,7 @@ For example you can type ``python`` and then:: # create a contact and send a message contact = ac.create_contact("someother@email.address") chat = ac.create_chat_by_contact(contact) - chat.send_text_message("hi from the python interpreter command line") + chat.send_text("hi from the python interpreter command line") Checkout our :doc:`api` for the various high-level things you can do to send/receive messages, create contacts and chats.