fix doc error

This commit is contained in:
miloas 2020-08-06 11:21:12 +08:00
parent ed4b708c66
commit 5dc79e7c12
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ pub use self::transform::{apply, Transform};
/// type Request = u8; /// type Request = u8;
/// type Response = u64; /// type Response = u64;
/// type Error = MyError; /// type Error = MyError;
/// type Future = Pin<Box<Future<Output=Result<Self::Response, Self::Error>>>; /// type Future = Pin<Box<Future<Output=Result<Self::Response, Self::Error>>>>;
/// ///
/// fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { ... } /// fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { ... }
/// ///