Fix Service<u8> request documentation

This commit is contained in:
Aode (Lion) 2021-09-25 14:02:25 -05:00
parent 2b1edb95ea
commit f0c4997c25
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ use self::ready::{err, ok, ready, Ready};
/// ///
/// fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { ... } /// fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { ... }
/// ///
/// fn call(&self, req: Self::Request) -> Self::Future { ... } /// fn call(&self, req: u8) -> Self::Future { ... }
/// } /// }
/// ``` /// ```
/// ///