Skip to content

Commit 501cef9

Browse files
committed
internal: Fix rustdoc warnings
`cargo doc` generates a bunch of warnings on rust-analyzer. Fix all the bare URL and empty code block warnings.
1 parent 85e87fb commit 501cef9

File tree

15 files changed

+33
-32
lines changed

15 files changed

+33
-32
lines changed

src/tools/rust-analyzer/crates/hir-def/src/hir.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -503,11 +503,11 @@ impl BindingAnnotation {
503503

504504
#[derive(Debug, Clone, Eq, PartialEq)]
505505
pub enum BindingProblems {
506-
/// https://doc.rust-lang.org/stable/error_codes/E0416.html
506+
/// <https://doc.rust-lang.org/stable/error_codes/E0416.html>
507507
BoundMoreThanOnce,
508-
/// https://doc.rust-lang.org/stable/error_codes/E0409.html
508+
/// <https://doc.rust-lang.org/stable/error_codes/E0409.html>
509509
BoundInconsistently,
510-
/// https://doc.rust-lang.org/stable/error_codes/E0408.html
510+
/// <https://doc.rust-lang.org/stable/error_codes/E0408.html>
511511
NotBoundAcrossAll,
512512
}
513513

src/tools/rust-analyzer/crates/hir-def/src/nameres.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
//!
1717
//! This happens in the `raw` module, which parses a single source file into a
1818
//! set of top-level items. Nested imports are desugared to flat imports in this
19-
//! phase. Macro calls are represented as a triple of (Path, Option<Name>,
20-
//! TokenTree).
19+
//! phase. Macro calls are represented as a triple of `(Path, Option<Name>,
20+
//! TokenTree)`.
2121
//!
2222
//! ## Collecting Modules
2323
//!

src/tools/rust-analyzer/crates/hir-expand/src/hygiene.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//! Expansion, and Definition Contexts,” *Journal of Functional Programming* 22, no. 2
55
//! (March 1, 2012): 181–216, <https://doi.org/10.1017/S0956796812000093>.
66
//!
7-
//! Also see https://rustc-dev-guide.rust-lang.org/macro-expansion.html#hygiene-and-hierarchies
7+
//! Also see <https://rustc-dev-guide.rust-lang.org/macro-expansion.html#hygiene-and-hierarchies>
88
//!
99
//! # The Expansion Order Hierarchy
1010
//!

src/tools/rust-analyzer/crates/hir/src/has_source.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pub trait HasSource {
2626
///
2727
/// The current some implementations can return `InFile` instead of `Option<InFile>`.
2828
/// But we made this method `Option` to support rlib in the future
29-
/// by https://github.com/rust-lang/rust-analyzer/issues/6913
29+
/// by <https://github.com/rust-lang/rust-analyzer/issues/6913>
3030
fn source(self, db: &dyn HirDatabase) -> Option<InFile<Self::Ast>>;
3131
}
3232

src/tools/rust-analyzer/crates/hir/src/semantics/source_to_def.rs

+10-10
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@
2626
//!
2727
//! The actual algorithm to resolve syntax to def is curious in two aspects:
2828
//!
29-
//! * It is recursive
30-
//! * It uses the inverse algorithm (what is the syntax for this def?)
29+
//! * It is recursive
30+
//! * It uses the inverse algorithm (what is the syntax for this def?)
3131
//!
3232
//! Specifically, the algorithm goes like this:
3333
//!
34-
//! 1. Find the syntactic container for the syntax. For example, field's
35-
//! container is the struct, and structs container is a module.
36-
//! 2. Recursively get the def corresponding to container.
37-
//! 3. Ask the container def for all child defs. These child defs contain
38-
//! the answer and answer's siblings.
39-
//! 4. For each child def, ask for it's source.
40-
//! 5. The child def whose source is the syntax node we've started with
41-
//! is the answer.
34+
//! 1. Find the syntactic container for the syntax. For example, field's
35+
//! container is the struct, and structs container is a module.
36+
//! 2. Recursively get the def corresponding to container.
37+
//! 3. Ask the container def for all child defs. These child defs contain
38+
//! the answer and answer's siblings.
39+
//! 4. For each child def, ask for it's source.
40+
//! 5. The child def whose source is the syntax node we've started with
41+
//! is the answer.
4242
//!
4343
//! It's interesting that both Roslyn and Kotlin contain very similar code
4444
//! shape.

src/tools/rust-analyzer/crates/ide-completion/src/completions/env_vars.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
//! Completes environment variables defined by Cargo (https://doc.rust-lang.org/cargo/reference/environment-variables.html)
1+
//! Completes environment variables defined by Cargo
2+
//! (<https://doc.rust-lang.org/cargo/reference/environment-variables.html>)
23
use hir::MacroFileIdExt;
34
use ide_db::syntax_helpers::node_ext::macro_call_for_string_token;
45
use syntax::{

src/tools/rust-analyzer/crates/ide-db/src/famous_defs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use crate::RootDatabase;
1515
/// you'd want to include minicore (see `test_utils::MiniCore`) declaration at
1616
/// the start of your tests:
1717
///
18-
/// ```
18+
/// ```text
1919
/// //- minicore: iterator, ord, derive
2020
/// ```
2121
pub struct FamousDefs<'a, 'b>(pub &'a Semantics<'b, RootDatabase>, pub Crate);

src/tools/rust-analyzer/crates/parser/src/grammar.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//! Code in this module also contains inline tests, which start with
1414
//! `// test name-of-the-test` comment and look like this:
1515
//!
16-
//! ```
16+
//! ```text
1717
//! // test function_with_zero_parameters
1818
//! // fn foo() {}
1919
//! ```

src/tools/rust-analyzer/crates/rust-analyzer/src/tracing/hprof.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//! Consumer of `tracing` data, which prints a hierarchical profile.
22
//!
3-
//! Based on https://github.com/davidbarsky/tracing-tree, but does less, while
3+
//! Based on <https://github.com/davidbarsky/tracing-tree>, but does less, while
44
//! actually printing timings for spans by default. The code here is vendored from
5-
//! https://github.com/matklad/tracing-span-tree.
5+
//! <https://github.com/matklad/tracing-span-tree>.
66
//!
77
//! Usage:
88
//!

src/tools/rust-analyzer/crates/salsa/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ pub trait ParallelDatabase: Database + Send {
284284
/// series of queries in parallel and arranging the results. Using
285285
/// this method for that purpose ensures that those queries will
286286
/// see a consistent view of the database (it is also advisable
287-
/// for those queries to use the [`Runtime::unwind_if_cancelled`]
287+
/// for those queries to use the [`Database::unwind_if_cancelled`]
288288
/// method to check for cancellation).
289289
///
290290
/// # Panics

src/tools/rust-analyzer/crates/span/src/hygiene.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//! Expansion, and Definition Contexts,” *Journal of Functional Programming* 22, no. 2
55
//! (March 1, 2012): 181–216, <https://doi.org/10.1017/S0956796812000093>.
66
//!
7-
//! Also see https://rustc-dev-guide.rust-lang.org/macro-expansion.html#hygiene-and-hierarchies
7+
//! Also see <https://rustc-dev-guide.rust-lang.org/macro-expansion.html#hygiene-and-hierarchies>
88
//!
99
//! # The Expansion Order Hierarchy
1010
//!

src/tools/rust-analyzer/crates/stdx/src/anymap.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//! This file is a port of only the necessary features from https://github.com/chris-morgan/anymap version 1.0.0-beta.2 for use within rust-analyzer.
1+
//! This file is a port of only the necessary features from <https://github.com/chris-morgan/anymap> version 1.0.0-beta.2 for use within rust-analyzer.
22
//! Copyright © 2014–2022 Chris Morgan.
3-
//! COPYING: https://github.com/chris-morgan/anymap/blob/master/COPYING
3+
//! COPYING: <https://github.com/chris-morgan/anymap/blob/master/COPYING>
44
//! Note that the license is changed from Blue Oak Model 1.0.0 or MIT or Apache-2.0 to MIT OR Apache-2.0
55
//!
66
//! This implementation provides a safe and convenient store for one value of each type.

src/tools/rust-analyzer/crates/test-utils/src/fixture.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -143,14 +143,14 @@ pub struct FixtureWithProjectMeta {
143143
/// Specifies LLVM data layout to be used.
144144
///
145145
/// You probably don't want to manually specify this. See LLVM manual for the
146-
/// syntax, if you must: https://llvm.org/docs/LangRef.html#data-layout
146+
/// syntax, if you must: <https://llvm.org/docs/LangRef.html#data-layout>
147147
pub target_data_layout: String,
148148
}
149149

150150
impl FixtureWithProjectMeta {
151151
/// Parses text which looks like this:
152152
///
153-
/// ```not_rust
153+
/// ```text
154154
/// //- some meta
155155
/// line 1
156156
/// line 2
@@ -159,7 +159,7 @@ impl FixtureWithProjectMeta {
159159
///
160160
/// Fixture can also start with a proc_macros and minicore declaration (in that order):
161161
///
162-
/// ```
162+
/// ```text
163163
/// //- toolchain: nightly
164164
/// //- proc_macros: identity
165165
/// //- minicore: sized

src/tools/rust-analyzer/crates/test-utils/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ pub fn add_cursor(text: &str, offset: TextSize) -> String {
224224
/// Annotations point to the last line that actually was long enough for the
225225
/// range, not counting annotations themselves. So overlapping annotations are
226226
/// possible:
227-
/// ```no_run
227+
/// ```text
228228
/// // stuff other stuff
229229
/// // ^^ 'st'
230230
/// // ^^^^^ 'stuff'

src/tools/rust-analyzer/crates/toolchain/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ impl Tool {
2323
///
2424
/// The current implementation checks three places for an executable to use:
2525
/// 1) `$CARGO_HOME/bin/<executable_name>`
26-
/// where $CARGO_HOME defaults to ~/.cargo (see https://doc.rust-lang.org/cargo/guide/cargo-home.html)
26+
/// where $CARGO_HOME defaults to ~/.cargo (see <https://doc.rust-lang.org/cargo/guide/cargo-home.html>)
2727
/// example: for cargo, this tries $CARGO_HOME/bin/cargo, or ~/.cargo/bin/cargo if $CARGO_HOME is unset.
2828
/// It seems that this is a reasonable place to try for cargo, rustc, and rustup
2929
/// 2) Appropriate environment variable (erroring if this is set but not a usable executable)
@@ -45,7 +45,7 @@ impl Tool {
4545
/// example: for cargo, this tries all paths in $PATH with appended `cargo`, returning the
4646
/// first that exists
4747
/// 3) `$CARGO_HOME/bin/<executable_name>`
48-
/// where $CARGO_HOME defaults to ~/.cargo (see https://doc.rust-lang.org/cargo/guide/cargo-home.html)
48+
/// where $CARGO_HOME defaults to ~/.cargo (see <https://doc.rust-lang.org/cargo/guide/cargo-home.html>)
4949
/// example: for cargo, this tries $CARGO_HOME/bin/cargo, or ~/.cargo/bin/cargo if $CARGO_HOME is unset.
5050
/// It seems that this is a reasonable place to try for cargo, rustc, and rustup
5151
/// 4) If all else fails, we just try to use the executable name directly

0 commit comments

Comments
 (0)