about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEd Page <eopage@gmail.com>2024-06-12 15:20:58 -0500
committerEd Page <eopage@gmail.com>2024-06-12 15:20:58 -0500
commit6d936263515ad4ca189553759f373abeae9bb548 (patch)
tree6de154e38e51784aacb868da4c93d6c0b014f045
parentb5b13568fb5da4ac988bde370008d6134d3dfe6c (diff)
downloadrust-6d936263515ad4ca189553759f373abeae9bb548.tar.gz
rust-6d936263515ad4ca189553759f373abeae9bb548.zip
docs(rustc): Help users to check-cfg Cargo docs
-rw-r--r--src/doc/rustc/src/check-cfg.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/doc/rustc/src/check-cfg.md b/src/doc/rustc/src/check-cfg.md
index 8e39adaa438..a1fc71307b3 100644
--- a/src/doc/rustc/src/check-cfg.md
+++ b/src/doc/rustc/src/check-cfg.md
@@ -14,6 +14,9 @@ whether to check conditions and how to check them.
 > **Note:** No implicit expectation is added when using `--cfg`. Users are expected to
 pass all expected names and values using the _check cfg specification_.
 
+> **Note:** For interacting with this through Cargo,
+see [Cargo Specifics](check-cfg/cargo-specifics.md) page.
+
 [^reachable]: `rustc` promises to at least check reachable `#[cfg]`, and while non-reachable
 `#[cfg]` are not currently checked, they may well be checked in the future without it being a
 breaking change.