Fix some multipart doc links (#612)

This commit is contained in:
Lucas
2019-09-05 20:48:39 +02:00
committed by Sean McArthur
parent 80c4294b74
commit d7fcd8ac2e

View File

@@ -1,7 +1,7 @@
//! multipart/form-data //! multipart/form-data
//! //!
//! To send a `multipart/form-data` body, a [`Form`](Form) is built up, adding //! To send a `multipart/form-data` body, a [`Form`](crate::multipart::Form) is built up, adding
//! fields or customized [`Part`](Part)s, and then calling the //! fields or customized [`Part`](crate::multipart::Part)s, and then calling the
//! [`multipart`][builder] method on the `RequestBuilder`. //! [`multipart`][builder] method on the `RequestBuilder`.
//! //!
//! # Example //! # Example