Merge pull request #762 from Lin-Buo-Ren/patch-4

Use proper language for * query mentions in README
This commit is contained in:
Badiboy 2020-03-01 21:14:32 +03:00 committed by GitHub
commit 9410a3d310
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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