Skip to content

Commit

Permalink
fix actix-service doc error (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
Miloas committed Aug 6, 2020
1 parent ed4b708 commit 02aaa75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actix-service/src/lib.rs
Expand Up @@ -52,7 +52,7 @@ pub use self::transform::{apply, Transform};
/// type Request = u8;
/// type Response = u64;
/// 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>> { ... }
///
Expand Down

0 comments on commit 02aaa75

Please sign in to comment.