From f8f7e7cb99efe0345ecb78f7ea2cf917f488bdb2 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 14 Mar 2023 00:45:28 -0500 Subject: [PATCH] docs: Address warnings This is to help prepare for checking for doc warnings across the entire workspace being created in rust-lang/cargo#11851 `Mutation` was made `pub`, along with its fields, but they aren't actually usable with anything, so I went and made it private to match what its documentation references --- crates/cargo-test-support/src/registry.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/crates/cargo-test-support/src/registry.rs b/crates/cargo-test-support/src/registry.rs index 7b1dc541a42..2a523ec049e 100644 --- a/crates/cargo-test-support/src/registry.rs +++ b/crates/cargo-test-support/src/registry.rs @@ -593,13 +593,13 @@ pub struct HttpServer { custom_responders: HashMap<&'static str, Box Response>>, } -/// A helper struct that collects the arguments for [HttpServer::check_authorized]. +/// A helper struct that collects the arguments for [`HttpServer::check_authorized`]. /// Based on looking at the request, these are the fields that the authentication header should attest to. -pub struct Mutation<'a> { - pub mutation: &'a str, - pub name: Option<&'a str>, - pub vers: Option<&'a str>, - pub cksum: Option<&'a str>, +struct Mutation<'a> { + mutation: &'a str, + name: Option<&'a str>, + vers: Option<&'a str>, + cksum: Option<&'a str>, } impl HttpServer { @@ -1204,7 +1204,7 @@ impl Package { } /// Adds a platform-specific dependency. Example: - /// ``` + /// ```toml /// [target.'cfg(windows)'.dependencies] /// foo = {version = "1.0"} /// ```