]> git.lizzy.rs Git - rust.git/commitdiff
rustdoc: link consistently to stable/beta in diagnostic messages
authorJoshua Nelson <jyn514@gmail.com>
Wed, 5 May 2021 03:36:33 +0000 (23:36 -0400)
committerJoshua Nelson <jyn514@gmail.com>
Fri, 4 Jun 2021 18:58:22 +0000 (14:58 -0400)
src/librustdoc/clean/utils.rs
src/librustdoc/core.rs
src/librustdoc/lib.rs
src/librustdoc/passes/collect_intra_doc_links.rs

index d9a25aba8682d002409298dc6f43498383c40a01..d538ee1404f5126627f7e03478243d03c4e2ca6e 100644 (file)
@@ -544,7 +544,8 @@ fn print_const_with_custom_print_scalar(tcx: TyCtxt<'_>, ct: &'tcx ty::Const<'tc
     })
 }
 
-/// A link to `doc.rust-lang.org` that includes the channel name.
+/// A link to `doc.rust-lang.org` that includes the channel name. Use this instead of manual links
+/// so that the channel is consistent.
 ///
 /// Set by `bootstrap::Builder::doc_rust_lang_org_channel` in order to keep tests passing on beta/stable.
 crate const DOC_RUST_LANG_ORG_CHANNEL: &'static str = env!("DOC_RUST_LANG_ORG_CHANNEL");
index 3dd13a8f17072940d1812cd71038339a69c31b55..52cae5631c8bf703e87fc0986bbb45ff7dc7f9cc 100644 (file)
@@ -399,15 +399,18 @@ impl<'tcx> DocContext<'tcx> {
     let mut krate = tcx.sess.time("clean_crate", || clean::krate(&mut ctxt));
 
     if krate.module.doc_value().map(|d| d.is_empty()).unwrap_or(true) {
-        let help = "The following guide may be of use:\n\
-                https://doc.rust-lang.org/nightly/rustdoc/how-to-write-documentation.html";
+        let help = format!(
+            "The following guide may be of use:\n\
+            {}/rustdoc/how-to-write-documentation.html",
+            crate::DOC_RUST_LANG_ORG_CHANNEL
+        );
         tcx.struct_lint_node(
             crate::lint::MISSING_CRATE_LEVEL_DOCS,
             DocContext::as_local_hir_id(tcx, krate.module.def_id).unwrap(),
             |lint| {
                 let mut diag =
                     lint.build("no documentation found for this crate's top-level module");
-                diag.help(help);
+                diag.help(&help);
                 diag.emit();
             },
         );
index a4b11584371aa13f24b1166e3aba9a087e0b83ee..7319a8185f3e54170739d373b5614b242a3503dc 100644 (file)
@@ -605,7 +605,10 @@ fn usage(argv0: &str) {
     }
     println!("{}", options.usage(&format!("{} [options] <input>", argv0)));
     println!("    @path               Read newline separated options from `path`\n");
-    println!("More information available at https://doc.rust-lang.org/rustdoc/what-is-rustdoc.html")
+    println!(
+        "More information available at {}/rustdoc/what-is-rustdoc.html",
+        DOC_RUST_LANG_ORG_CHANNEL
+    );
 }
 
 /// A result type used by several functions under `main()`.
index 81c90f4eaa75b3c0cb846e17710b79d0600486ee..15f378669a5c9762222a4df277f9436e84ce2476 100644 (file)
@@ -1999,8 +1999,11 @@ fn disambiguator_error(
 ) {
     diag_info.link_range = disambiguator_range;
     report_diagnostic(cx.tcx, BROKEN_INTRA_DOC_LINKS, msg, &diag_info, |diag, _sp| {
-        let msg = "see https://doc.rust-lang.org/nightly/rustdoc/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators";
-        diag.note(msg);
+        let msg = format!(
+            "see {}/rustdoc/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators",
+            crate::DOC_RUST_LANG_ORG_CHANNEL
+        );
+        diag.note(&msg);
     });
 }