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 74db902622
commit 4cdba3c843
+2 -2
View File
@@ -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