Update the FAQ

This commit is contained in:
Hirrolot 2022-04-22 23:50:19 +06:00
parent 96b8df4bdd
commit 4a4990e207
2 changed files with 6 additions and 2 deletions

View file

@ -334,6 +334,10 @@ Associated links:
- [Marvin's Marvellous Guide to All Things Webhook](https://core.telegram.org/bots/webhooks)
- [Using self-signed certificates](https://core.telegram.org/bots/self-signed)
**Q: Can I handle both callback queries and messages within a single dialogue?**
A: Yes, see [`examples/purchase.rs`](examples/purchase.rs).
## Community bots
Feel free to propose your own bot to our collection!

View file

@ -1,5 +1,5 @@
// This example demonstrates how to deal with messages and callback queries in a
// single dialogue.
// This example demonstrates how to deal with messages and callback queries
// within a single dialogue.
//
// # Example
// ```