diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-01-13 16:44:21 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-13 16:44:21 +0900 |
| commit | 0c25ab051c4fda5fa235b64de7e9b91acd5ed191 (patch) | |
| tree | f02bbaa05a41cfd794561cfd7cfa3ce02f1469f6 | |
| parent | ce8f3207932d6e0d824cde3fb3db012ecc2a575d (diff) | |
| parent | 27b99d405092ac775efe99e520f0f969902906a3 (diff) | |
| download | rust-0c25ab051c4fda5fa235b64de7e9b91acd5ed191.tar.gz rust-0c25ab051c4fda5fa235b64de7e9b91acd5ed191.zip | |
Rollup merge of #68156 - JohnTitor:fix-path-in-doc, r=Dylan-DPC
Fix crate paths in comments Tiny follow-up of #67806 and others r? @Centril
| -rw-r--r-- | src/librustc_feature/lib.rs | 3 | ||||
| -rw-r--r-- | src/librustc_lint/builtin.rs | 2 | ||||
| -rw-r--r-- | src/test/ui/feature-gate/issue-43106-gating-of-builtin-attrs.rs | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/src/librustc_feature/lib.rs b/src/librustc_feature/lib.rs index 71a46427925..01546f78257 100644 --- a/src/librustc_feature/lib.rs +++ b/src/librustc_feature/lib.rs @@ -1,7 +1,8 @@ //! # Feature gates //! //! This crate declares the set of past and present unstable features in the compiler. -//! Feature gate checking itself is done in `libsyntax/feature_gate/check.rs` at the moment. +//! Feature gate checking itself is done in `librustc_ast_passes/feature_gate.rs` +//! at the moment. //! //! Features are enabled in programs via the crate-level attributes of //! `#![feature(...)]` with a comma-separated list of features. diff --git a/src/librustc_lint/builtin.rs b/src/librustc_lint/builtin.rs index 15a8332a284..6aa809a706e 100644 --- a/src/librustc_lint/builtin.rs +++ b/src/librustc_lint/builtin.rs @@ -1812,7 +1812,7 @@ declare_lint! { } declare_lint_pass!( - /// Check for used feature gates in `INCOMPLETE_FEATURES` in `feature_gate.rs`. + /// Check for used feature gates in `INCOMPLETE_FEATURES` in `librustc_feature/active.rs`. IncompleteFeatures => [INCOMPLETE_FEATURES] ); diff --git a/src/test/ui/feature-gate/issue-43106-gating-of-builtin-attrs.rs b/src/test/ui/feature-gate/issue-43106-gating-of-builtin-attrs.rs index 0d804f012bc..92c5c202502 100644 --- a/src/test/ui/feature-gate/issue-43106-gating-of-builtin-attrs.rs +++ b/src/test/ui/feature-gate/issue-43106-gating-of-builtin-attrs.rs @@ -12,7 +12,7 @@ // the change when it happens. // // At the time of authoring, the attributes here are listed in the -// order that they occur in libsyntax/feature_gate.rs. +// order that they occur in `librustc_feature`. // // Any builtin attributes that: // |
