From fba31d4e0aa87f1e7f8c59f00079b6ba1aa534cc Mon Sep 17 00:00:00 2001 From: Zac Pullar-Strecker Date: Wed, 2 Oct 2019 16:48:25 +1300 Subject: [PATCH] Expose ContentDisposition in actix-multipart to fix broken doc link (#1114) * Expose ContentDisposition in actix-multipart to fix broken doc link * Revert "Expose ContentDisposition in actix-multipart to fix broken doc link" This reverts commit e90d71d16cb552cd3e1745646fabcc48e0b4e379. * Unhide actix-http::header::common docs These types are used in other exported documented interfaces and create broken links if not documented. See `actix_multipart::Field.content_disposition` --- actix-http/src/header/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/actix-http/src/header/mod.rs b/actix-http/src/header/mod.rs index 37cf94508..59cbb11c4 100644 --- a/actix-http/src/header/mod.rs +++ b/actix-http/src/header/mod.rs @@ -16,7 +16,6 @@ use crate::httpmessage::HttpMessage; mod common; pub(crate) mod map; mod shared; -#[doc(hidden)] pub use self::common::*; #[doc(hidden)] pub use self::shared::*;