Skip to content

Commit

Permalink
docs: Address warnings
Browse files Browse the repository at this point in the history
This is to help prepare for checking for doc warnings across the entire
workspace being created in rust-lang#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
  • Loading branch information
epage committed Mar 14, 2023
1 parent 9282cf7 commit f8f7e7c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions crates/cargo-test-support/src/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -593,13 +593,13 @@ pub struct HttpServer {
custom_responders: HashMap<&'static str, Box<dyn Send + Fn(&Request, &HttpServer) -> 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 {
Expand Down Expand Up @@ -1204,7 +1204,7 @@ impl Package {
}

/// Adds a platform-specific dependency. Example:
/// ```
/// ```toml
/// [target.'cfg(windows)'.dependencies]
/// foo = {version = "1.0"}
/// ```
Expand Down

0 comments on commit f8f7e7c

Please sign in to comment.