Merge branch 'master' into feature/io-uring

This commit is contained in:
Rob Ede 2021-09-28 09:24:37 +01:00 committed by GitHub
commit f847a914db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 { ... }
/// } /// }
/// ``` /// ```
/// ///