From 52ccb1bf425805943856c6b717f2e75268994c9b Mon Sep 17 00:00:00 2001 From: bear Date: Tue, 24 Aug 2021 13:58:35 +0800 Subject: [PATCH] Update StreamBody doc link (#253) --- src/body/stream_body.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/body/stream_body.rs b/src/body/stream_body.rs index a01a983a..17ddbd33 100644 --- a/src/body/stream_body.rs +++ b/src/body/stream_body.rs @@ -19,7 +19,7 @@ pin_project! { /// /// If purpose of this type is to be used in responses. If you want to /// extract the request body as a stream consider using - /// [`extract::BodyStream`]. + /// [`BodyStream`](crate::extract::BodyStream). /// /// # Example ///