From b5b42b6cab9ccce86c841c267dbf7ad68bc7218a Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Sun, 29 Mar 2020 11:21:57 -0700 Subject: [PATCH] Squelch some rustdoc warnings. --- src/cargo/util/config/target.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cargo/util/config/target.rs b/src/cargo/util/config/target.rs index 1ea39abb732..956b5817231 100644 --- a/src/cargo/util/config/target.rs +++ b/src/cargo/util/config/target.rs @@ -5,7 +5,7 @@ use serde::Deserialize; use std::collections::{BTreeMap, HashMap}; use std::path::PathBuf; -/// Config definition of a [target.'cfg(…)'] table. +/// Config definition of a `[target.'cfg(…)']` table. /// /// This is a subset of `TargetConfig`. #[derive(Debug, Deserialize)] @@ -19,7 +19,7 @@ pub struct TargetCfgConfig { pub other: BTreeMap, } -/// Config definition of a [target] table. +/// Config definition of a `[target]` table. #[derive(Debug)] pub struct TargetConfig { /// Process to run as a wrapper for `cargo run`, `test`, and `bench` commands.