Merge pull request #664 from hugocornago/dev

fix typo
This commit is contained in:
Hirrolot 2022-06-27 14:40:02 +06:00 committed by GitHub
commit 1c6b35a443
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
//! An update dispatching model based on [`dptree`].
//!
//! In teloxide, updates are dispatched by a pipleine. The central type is
//! In teloxide, updates are dispatched by a pipeline. The central type is
//! [`dptree::Handler`] -- it represents a handler of an update; since the API
//! is highly declarative, you can combine handlers with each other via such
//! methods as [`dptree::Handler::chain`] and [`dptree::Handler::branch`]. The