From d7fcd8ac2ec69fe2e4eb46c6589253f73a8b2d10 Mon Sep 17 00:00:00 2001 From: Lucas <24826124+Luro02@users.noreply.github.com> Date: Thu, 5 Sep 2019 20:48:39 +0200 Subject: [PATCH] Fix some multipart doc links (#612) --- src/multipart.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/multipart.rs b/src/multipart.rs index 0ace3bb..644dbd5 100644 --- a/src/multipart.rs +++ b/src/multipart.rs @@ -1,7 +1,7 @@ //! multipart/form-data //! -//! To send a `multipart/form-data` body, a [`Form`](Form) is built up, adding -//! fields or customized [`Part`](Part)s, and then calling the +//! 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 //! [`multipart`][builder] method on the `RequestBuilder`. //! //! # Example