From 8129b9511805ac02f76c30d33b120797c3ed5404 Mon Sep 17 00:00:00 2001 From: Cykrt Date: Wed, 15 Feb 2017 21:31:52 +0800 Subject: [PATCH] Fixed README.MD Fixed a problem that could not jump to "Using web hooks" correctly --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ad5ae0..2382457 100644 --- a/README.md +++ b/README.md @@ -466,7 +466,7 @@ bot.set_update_listener(handle_messages) bot.polling() ``` -### Using webhooks +### Using web hooks When using webhooks telegram sends one Update per call, for processing it you should call process_new_messages([update.message]) when you recieve it. There are some examples using webhooks in the *examples/webhook_examples* directory.