From 8400d8d740144553e462047f7782340faffc3024 Mon Sep 17 00:00:00 2001 From: nikstur Date: Sat, 22 Jan 2022 23:59:00 +0100 Subject: [PATCH] Fixed links in blocking::multipart that pointed to async version instead of blocking --- src/blocking/multipart.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blocking/multipart.rs b/src/blocking/multipart.rs index e84f697..d94e139 100644 --- a/src/blocking/multipart.rs +++ b/src/blocking/multipart.rs @@ -1,7 +1,7 @@ //! multipart/form-data //! -//! To send a `multipart/form-data` body, a [`Form`](crate::multipart::Form) is built up, adding -//! fields or customized [`Part`](crate::multipart::Part)s, and then calling the +//! To send a `multipart/form-data` body, a [`Form`](crate::blocking::multipart::Form) is built up, adding +//! fields or customized [`Part`](crate::blocking::multipart::Part)s, and then calling the //! [`multipart`][builder] method on the `RequestBuilder`. //! //! # Example