1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Use proper language for * query mentions in README

Signed-off-by: 林博仁(Buo-ren, Lin) <Buo.Ren.Lin@gmail.com>
This commit is contained in:
林博仁(Buo-ren Lin) 2020-02-27 16:44:43 +08:00
parent e789407774
commit a4e5a09ab2

View File

@ -216,7 +216,7 @@ Same as Message handlers
#### Callback Query Handler
In bot2.0 update. You can get `callback_query` in update object. In telebot use `callback_query_handler` to process callback_querys.
In bot2.0 update. You can get `callback_query` in update object. In telebot use `callback_query_handler` to process callback queries.
```python
@bot.callback_query_handler(func=lambda call: True)
@ -372,7 +372,7 @@ More information about [Inline mode](https://core.telegram.org/bots/inline).
#### inline_handler
Now, you can use inline_handler to get inline_query in telebot.
Now, you can use inline_handler to get inline queries in telebot.
```python