Show diff suggestion format on verbose replacement
``` error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields --> $DIR/attempted-access-non-fatal.rs:7:15 | LL | let _ = 2.l; | ^ | help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix | LL - let _ = 2.l; LL + let _ = 2.0f64; | ```
This commit is contained in:
parent
8c04e39595
commit
f0845adb0c
1017 changed files with 10364 additions and 6943 deletions
|
@ -11,8 +11,9 @@ LL | #![deny(rustdoc::broken_intra_doc_links)]
|
|||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
help: to link to the enum, prefix with `enum@`
|
||||
|
|
||||
LL | /// Link to [enum@S]
|
||||
| ~~~~~
|
||||
LL - /// Link to [struct@S]
|
||||
LL + /// Link to [enum@S]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `S`
|
||||
--> $DIR/disambiguator-mismatch.rs:27:14
|
||||
|
@ -22,8 +23,9 @@ LL | /// Link to [mod@S]
|
|||
|
|
||||
help: to link to the enum, prefix with `enum@`
|
||||
|
|
||||
LL | /// Link to [enum@S]
|
||||
| ~~~~~
|
||||
LL - /// Link to [mod@S]
|
||||
LL + /// Link to [enum@S]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `S`
|
||||
--> $DIR/disambiguator-mismatch.rs:32:14
|
||||
|
@ -33,8 +35,9 @@ LL | /// Link to [union@S]
|
|||
|
|
||||
help: to link to the enum, prefix with `enum@`
|
||||
|
|
||||
LL | /// Link to [enum@S]
|
||||
| ~~~~~
|
||||
LL - /// Link to [union@S]
|
||||
LL + /// Link to [enum@S]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `S`
|
||||
--> $DIR/disambiguator-mismatch.rs:37:14
|
||||
|
@ -44,8 +47,9 @@ LL | /// Link to [trait@S]
|
|||
|
|
||||
help: to link to the enum, prefix with `enum@`
|
||||
|
|
||||
LL | /// Link to [enum@S]
|
||||
| ~~~~~
|
||||
LL - /// Link to [trait@S]
|
||||
LL + /// Link to [enum@S]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `T`
|
||||
--> $DIR/disambiguator-mismatch.rs:42:14
|
||||
|
@ -55,8 +59,9 @@ LL | /// Link to [struct@T]
|
|||
|
|
||||
help: to link to the trait, prefix with `trait@`
|
||||
|
|
||||
LL | /// Link to [trait@T]
|
||||
| ~~~~~~
|
||||
LL - /// Link to [struct@T]
|
||||
LL + /// Link to [trait@T]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `m`
|
||||
--> $DIR/disambiguator-mismatch.rs:47:14
|
||||
|
@ -89,8 +94,9 @@ LL | /// Link to [const@s]
|
|||
|
|
||||
help: to link to the static, prefix with `static@`
|
||||
|
|
||||
LL | /// Link to [static@s]
|
||||
| ~~~~~~~
|
||||
LL - /// Link to [const@s]
|
||||
LL + /// Link to [static@s]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `c`
|
||||
--> $DIR/disambiguator-mismatch.rs:63:14
|
||||
|
@ -100,8 +106,9 @@ LL | /// Link to [static@c]
|
|||
|
|
||||
help: to link to the constant, prefix with `const@`
|
||||
|
|
||||
LL | /// Link to [const@c]
|
||||
| ~~~~~~
|
||||
LL - /// Link to [static@c]
|
||||
LL + /// Link to [const@c]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `c`
|
||||
--> $DIR/disambiguator-mismatch.rs:68:14
|
||||
|
@ -111,8 +118,9 @@ LL | /// Link to [fn@c]
|
|||
|
|
||||
help: to link to the constant, prefix with `const@`
|
||||
|
|
||||
LL | /// Link to [const@c]
|
||||
| ~~~~~~
|
||||
LL - /// Link to [fn@c]
|
||||
LL + /// Link to [const@c]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `c`
|
||||
--> $DIR/disambiguator-mismatch.rs:73:14
|
||||
|
@ -146,8 +154,9 @@ LL | /// Link to [fn@std]
|
|||
|
|
||||
help: to link to the crate, prefix with `mod@`
|
||||
|
|
||||
LL | /// Link to [mod@std]
|
||||
| ~~~~
|
||||
LL - /// Link to [fn@std]
|
||||
LL + /// Link to [mod@std]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `X::y`
|
||||
--> $DIR/disambiguator-mismatch.rs:88:14
|
||||
|
@ -157,8 +166,9 @@ LL | /// Link to [method@X::y]
|
|||
|
|
||||
help: to link to the field, prefix with `field@`
|
||||
|
|
||||
LL | /// Link to [field@X::y]
|
||||
| ~~~~~~
|
||||
LL - /// Link to [method@X::y]
|
||||
LL + /// Link to [field@X::y]
|
||||
|
|
||||
|
||||
error: unresolved link to `S::A`
|
||||
--> $DIR/disambiguator-mismatch.rs:93:14
|
||||
|
@ -168,8 +178,9 @@ LL | /// Link to [field@S::A]
|
|||
|
|
||||
help: to link to the variant, prefix with `variant@`
|
||||
|
|
||||
LL | /// Link to [variant@S::A]
|
||||
| ~~~~~~~~
|
||||
LL - /// Link to [field@S::A]
|
||||
LL + /// Link to [variant@S::A]
|
||||
|
|
||||
|
||||
error: aborting due to 15 previous errors
|
||||
|
||||
|
|
|
@ -11,8 +11,9 @@ LL | #![deny(rustdoc::broken_intra_doc_links)]
|
|||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
help: to link to the associated constant, prefix with `const@`
|
||||
|
|
||||
LL | //! [const@u8::MIN]
|
||||
| ~~~~~~
|
||||
LL - //! [static@u8::MIN]
|
||||
LL + //! [const@u8::MIN]
|
||||
|
|
||||
|
||||
error: aborting due to 1 previous error
|
||||
|
||||
|
|
|
@ -26,12 +26,14 @@ LL | /// [type@char]
|
|||
|
|
||||
help: to link to the module, prefix with `mod@`
|
||||
|
|
||||
LL | /// [mod@char]
|
||||
| ~~~~
|
||||
LL - /// [type@char]
|
||||
LL + /// [mod@char]
|
||||
|
|
||||
help: to link to the primitive type, prefix with `prim@`
|
||||
|
|
||||
LL | /// [prim@char]
|
||||
| ~~~~~
|
||||
LL - /// [type@char]
|
||||
LL + /// [prim@char]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `char`
|
||||
--> $DIR/prim-conflict.rs:19:6
|
||||
|
@ -41,8 +43,9 @@ LL | /// [struct@char]
|
|||
|
|
||||
help: to link to the module, prefix with `mod@`
|
||||
|
|
||||
LL | /// [mod@char]
|
||||
| ~~~~
|
||||
LL - /// [struct@char]
|
||||
LL + /// [mod@char]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `char`
|
||||
--> $DIR/prim-conflict.rs:26:10
|
||||
|
@ -52,8 +55,9 @@ LL | //! [struct@char]
|
|||
|
|
||||
help: to link to the primitive type, prefix with `prim@`
|
||||
|
|
||||
LL | //! [prim@char]
|
||||
| ~~~~~
|
||||
LL - //! [struct@char]
|
||||
LL + //! [prim@char]
|
||||
|
|
||||
|
||||
error: aborting due to 4 previous errors
|
||||
|
||||
|
|
|
@ -11,8 +11,9 @@ LL | #![deny(rustdoc::broken_intra_doc_links)]
|
|||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
help: to link to the variant, prefix with `variant@`
|
||||
|
|
||||
LL | /// [variant@Foo::X]
|
||||
| ~~~~~~~~
|
||||
LL - /// [value@Foo::X]
|
||||
LL + /// [variant@Foo::X]
|
||||
|
|
||||
|
||||
error: unresolved link to `MyStruct`
|
||||
--> $DIR/value-ctor.rs:10:11
|
||||
|
@ -22,8 +23,9 @@ LL | /// [tst][value@MyStruct]
|
|||
|
|
||||
help: to link to the struct, prefix with `struct@`
|
||||
|
|
||||
LL | /// [tst][struct@MyStruct]
|
||||
| ~~~~~~~
|
||||
LL - /// [tst][value@MyStruct]
|
||||
LL + /// [tst][struct@MyStruct]
|
||||
|
|
||||
|
||||
error: unresolved link to `Internals`
|
||||
--> $DIR/value-ctor.rs:20:15
|
||||
|
@ -33,8 +35,9 @@ LL | /// while [b][value@Internals] fails.
|
|||
|
|
||||
help: to link to the struct, prefix with `struct@`
|
||||
|
|
||||
LL | /// while [b][struct@Internals] fails.
|
||||
| ~~~~~~~
|
||||
LL - /// while [b][value@Internals] fails.
|
||||
LL + /// while [b][struct@Internals] fails.
|
||||
|
|
||||
|
||||
error: incompatible link kind for `Internals`
|
||||
--> $DIR/value-ctor.rs:22:15
|
||||
|
@ -44,8 +47,9 @@ LL | /// while [d][variant@Internals] fails.
|
|||
|
|
||||
help: to link to the struct, prefix with `struct@`
|
||||
|
|
||||
LL | /// while [d][struct@Internals] fails.
|
||||
| ~~~~~~~
|
||||
LL - /// while [d][variant@Internals] fails.
|
||||
LL + /// while [d][struct@Internals] fails.
|
||||
|
|
||||
|
||||
error: unresolved link to `Internals2`
|
||||
--> $DIR/value-ctor.rs:34:15
|
||||
|
@ -55,8 +59,9 @@ LL | /// while [b][value@Internals2] fails.
|
|||
|
|
||||
help: to link to the enum, prefix with `enum@`
|
||||
|
|
||||
LL | /// while [b][enum@Internals2] fails.
|
||||
| ~~~~~
|
||||
LL - /// while [b][value@Internals2] fails.
|
||||
LL + /// while [b][enum@Internals2] fails.
|
||||
|
|
||||
|
||||
error: aborting due to 5 previous errors
|
||||
|
||||
|
|
|
@ -11,8 +11,9 @@ LL | #![deny(rustdoc::broken_intra_doc_links)]
|
|||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
help: to link to the trait, prefix with `trait@`
|
||||
|
|
||||
LL | /// [`trait@Clone`]
|
||||
| ~~~~~~
|
||||
LL - /// [`struct@Clone`]
|
||||
LL + /// [`trait@Clone`]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `Clone`
|
||||
--> $DIR/weird-syntax.rs:21:9
|
||||
|
@ -22,8 +23,9 @@ LL | /// [```struct@Clone```]
|
|||
|
|
||||
help: to link to the trait, prefix with `trait@`
|
||||
|
|
||||
LL | /// [```trait@Clone```]
|
||||
| ~~~~~~
|
||||
LL - /// [```struct@Clone```]
|
||||
LL + /// [```trait@Clone```]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `Clone`
|
||||
--> $DIR/weird-syntax.rs:24:11
|
||||
|
@ -33,8 +35,9 @@ LL | /// [ ` struct@Clone ` ]
|
|||
|
|
||||
help: to link to the trait, prefix with `trait@`
|
||||
|
|
||||
LL | /// [ ` trait@Clone ` ]
|
||||
| ~~~~~~
|
||||
LL - /// [ ` struct@Clone ` ]
|
||||
LL + /// [ ` trait@Clone ` ]
|
||||
|
|
||||
|
||||
error: unresolved link to `Clone`
|
||||
--> $DIR/weird-syntax.rs:27:9
|
||||
|
@ -104,8 +107,9 @@ LL | /// [x][ struct@Clone]
|
|||
|
|
||||
help: to link to the trait, prefix with `trait@`
|
||||
|
|
||||
LL | /// [x][ trait@Clone]
|
||||
| ~~~~~~
|
||||
LL - /// [x][ struct@Clone]
|
||||
LL + /// [x][ trait@Clone]
|
||||
|
|
||||
|
||||
error: incompatible link kind for `Clone`
|
||||
--> $DIR/weird-syntax.rs:65:9
|
||||
|
@ -115,8 +119,9 @@ LL | /// [x][struct@Clone ]
|
|||
|
|
||||
help: to link to the trait, prefix with `trait@`
|
||||
|
|
||||
LL | /// [x][trait@Clone ]
|
||||
| ~~~~~~
|
||||
LL - /// [x][struct@Clone ]
|
||||
LL + /// [x][trait@Clone ]
|
||||
|
|
||||
|
||||
error: unresolved link to `Clone`
|
||||
--> $DIR/weird-syntax.rs:74:9
|
||||
|
@ -158,8 +163,9 @@ LL | /// [w]( struct@Clone)
|
|||
|
|
||||
help: to link to the trait, prefix with `trait@`
|
||||
|
|
||||
LL | /// [w]( trait@Clone)
|
||||
| ~~~~~~
|
||||
LL - /// [w]( struct@Clone)
|
||||
LL + /// [w]( trait@Clone)
|
||||
|
|
||||
|
||||
error: incompatible link kind for `Clone`
|
||||
--> $DIR/weird-syntax.rs:94:9
|
||||
|
@ -169,8 +175,9 @@ LL | /// [w](struct@Clone )
|
|||
|
|
||||
help: to link to the trait, prefix with `trait@`
|
||||
|
|
||||
LL | /// [w](trait@Clone )
|
||||
| ~~~~~~
|
||||
LL - /// [w](struct@Clone )
|
||||
LL + /// [w](trait@Clone )
|
||||
|
|
||||
|
||||
error: unresolved link to `Clone`
|
||||
--> $DIR/weird-syntax.rs:97:9
|
||||
|
|
|
@ -319,8 +319,9 @@ LL | | > {
|
|||
| |__^ ...because it uses `Self` as a type parameter
|
||||
help: consider using an opaque type instead
|
||||
|
|
||||
LL | pub fn next<'a, T>(s: &'a mut impl SVec<Item = T, Output = T>) {
|
||||
| ~~~~
|
||||
LL - pub fn next<'a, T>(s: &'a mut dyn SVec<Item = T, Output = T>) {
|
||||
LL + pub fn next<'a, T>(s: &'a mut impl SVec<Item = T, Output = T>) {
|
||||
|
|
||||
|
||||
error[E0107]: missing generics for associated type `SVec::Item`
|
||||
--> $DIR/ice-generic-type-alias-105742.rs:16:21
|
||||
|
|
|
@ -6,8 +6,9 @@ LL | y: (typeof("hey"),),
|
|||
|
|
||||
help: consider replacing `typeof(...)` with an actual type
|
||||
|
|
||||
LL | y: (&str,),
|
||||
| ~~~~
|
||||
LL - y: (typeof("hey"),),
|
||||
LL + y: (&str,),
|
||||
|
|
||||
|
||||
error: aborting due to 1 previous error
|
||||
|
||||
|
|
|
@ -15,8 +15,9 @@ LL | #![deny(rustdoc::redundant_explicit_links)]
|
|||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`Vfs`]
|
||||
| ~~~~~~~
|
||||
LL - /// [`Vfs`][crate::Vfs]
|
||||
LL + /// [`Vfs`]
|
||||
|
|
||||
|
||||
error: aborting due to 1 previous error
|
||||
|
||||
|
|
|
@ -15,8 +15,9 @@ LL | #![deny(rustdoc::redundant_explicit_links)]
|
|||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`Vfs`]
|
||||
| ~~~~~~~
|
||||
LL - /// [`Vfs`][crate::Vfs]
|
||||
LL + /// [`Vfs`]
|
||||
|
|
||||
|
||||
error: aborting due to 1 previous error
|
||||
|
||||
|
|
|
@ -15,8 +15,9 @@ LL | #![deny(rustdoc::redundant_explicit_links)]
|
|||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [dummy_target]
|
||||
| ~~~~~~~~~~~~~~
|
||||
LL - /// [dummy_target](dummy_target)
|
||||
LL + /// [dummy_target]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:9:22
|
||||
|
@ -30,8 +31,9 @@ LL | /// [`dummy_target`](dummy_target)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`dummy_target`]
|
||||
| ~~~~~~~~~~~~~~~~
|
||||
LL - /// [`dummy_target`](dummy_target)
|
||||
LL + /// [`dummy_target`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:12:11
|
||||
|
@ -45,8 +47,9 @@ LL | /// [Vec](Vec)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [Vec]
|
||||
| ~~~~~
|
||||
LL - /// [Vec](Vec)
|
||||
LL + /// [Vec]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:14:13
|
||||
|
@ -60,8 +63,9 @@ LL | /// [`Vec`](Vec)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`Vec`]
|
||||
| ~~~~~~~
|
||||
LL - /// [`Vec`](Vec)
|
||||
LL + /// [`Vec`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:16:11
|
||||
|
@ -75,8 +79,9 @@ LL | /// [Vec](std::vec::Vec)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [Vec]
|
||||
| ~~~~~
|
||||
LL - /// [Vec](std::vec::Vec)
|
||||
LL + /// [Vec]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:18:13
|
||||
|
@ -90,8 +95,9 @@ LL | /// [`Vec`](std::vec::Vec)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`Vec`]
|
||||
| ~~~~~~~
|
||||
LL - /// [`Vec`](std::vec::Vec)
|
||||
LL + /// [`Vec`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:20:21
|
||||
|
@ -105,8 +111,9 @@ LL | /// [std::vec::Vec](Vec)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [std::vec::Vec]
|
||||
| ~~~~~~~~~~~~~~~
|
||||
LL - /// [std::vec::Vec](Vec)
|
||||
LL + /// [std::vec::Vec]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:22:23
|
||||
|
@ -120,8 +127,9 @@ LL | /// [`std::vec::Vec`](Vec)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`std::vec::Vec`]
|
||||
| ~~~~~~~~~~~~~~~~~
|
||||
LL - /// [`std::vec::Vec`](Vec)
|
||||
LL + /// [`std::vec::Vec`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:24:21
|
||||
|
@ -135,8 +143,9 @@ LL | /// [std::vec::Vec](std::vec::Vec)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [std::vec::Vec]
|
||||
| ~~~~~~~~~~~~~~~
|
||||
LL - /// [std::vec::Vec](std::vec::Vec)
|
||||
LL + /// [std::vec::Vec]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:26:23
|
||||
|
@ -150,8 +159,9 @@ LL | /// [`std::vec::Vec`](std::vec::Vec)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`std::vec::Vec`]
|
||||
| ~~~~~~~~~~~~~~~~~
|
||||
LL - /// [`std::vec::Vec`](std::vec::Vec)
|
||||
LL + /// [`std::vec::Vec`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:29:13
|
||||
|
@ -165,8 +175,9 @@ LL | /// [usize](usize)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [usize]
|
||||
| ~~~~~~~
|
||||
LL - /// [usize](usize)
|
||||
LL + /// [usize]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:31:15
|
||||
|
@ -180,8 +191,9 @@ LL | /// [`usize`](usize)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`usize`]
|
||||
| ~~~~~~~~~
|
||||
LL - /// [`usize`](usize)
|
||||
LL + /// [`usize`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:33:13
|
||||
|
@ -195,8 +207,9 @@ LL | /// [usize](std::primitive::usize)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [usize]
|
||||
| ~~~~~~~
|
||||
LL - /// [usize](std::primitive::usize)
|
||||
LL + /// [usize]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:35:15
|
||||
|
@ -210,8 +223,9 @@ LL | /// [`usize`](std::primitive::usize)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`usize`]
|
||||
| ~~~~~~~~~
|
||||
LL - /// [`usize`](std::primitive::usize)
|
||||
LL + /// [`usize`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:37:29
|
||||
|
@ -225,8 +239,9 @@ LL | /// [std::primitive::usize](usize)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [std::primitive::usize]
|
||||
| ~~~~~~~~~~~~~~~~~~~~~~~
|
||||
LL - /// [std::primitive::usize](usize)
|
||||
LL + /// [std::primitive::usize]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:39:31
|
||||
|
@ -240,8 +255,9 @@ LL | /// [`std::primitive::usize`](usize)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`std::primitive::usize`]
|
||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
LL - /// [`std::primitive::usize`](usize)
|
||||
LL + /// [`std::primitive::usize`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:41:29
|
||||
|
@ -255,8 +271,9 @@ LL | /// [std::primitive::usize](std::primitive::usize)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [std::primitive::usize]
|
||||
| ~~~~~~~~~~~~~~~~~~~~~~~
|
||||
LL - /// [std::primitive::usize](std::primitive::usize)
|
||||
LL + /// [std::primitive::usize]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:43:31
|
||||
|
@ -270,8 +287,9 @@ LL | /// [`std::primitive::usize`](std::primitive::usize)
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`std::primitive::usize`]
|
||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
LL - /// [`std::primitive::usize`](std::primitive::usize)
|
||||
LL + /// [`std::primitive::usize`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:46:20
|
||||
|
@ -285,8 +303,9 @@ LL | /// [dummy_target](dummy_target) TEXT
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [dummy_target] TEXT
|
||||
| ~~~~~~~~~~~~~~
|
||||
LL - /// [dummy_target](dummy_target) TEXT
|
||||
LL + /// [dummy_target] TEXT
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:48:22
|
||||
|
@ -300,8 +319,9 @@ LL | /// [`dummy_target`](dummy_target) TEXT
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`dummy_target`] TEXT
|
||||
| ~~~~~~~~~~~~~~~~
|
||||
LL - /// [`dummy_target`](dummy_target) TEXT
|
||||
LL + /// [`dummy_target`] TEXT
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:56:20
|
||||
|
@ -315,8 +335,9 @@ LL | /// [dummy_target][dummy_target]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [dummy_target]
|
||||
| ~~~~~~~~~~~~~~
|
||||
LL - /// [dummy_target][dummy_target]
|
||||
LL + /// [dummy_target]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:58:22
|
||||
|
@ -330,8 +351,9 @@ LL | /// [`dummy_target`][dummy_target]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`dummy_target`]
|
||||
| ~~~~~~~~~~~~~~~~
|
||||
LL - /// [`dummy_target`][dummy_target]
|
||||
LL + /// [`dummy_target`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:61:11
|
||||
|
@ -345,8 +367,9 @@ LL | /// [Vec][Vec]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [Vec]
|
||||
| ~~~~~
|
||||
LL - /// [Vec][Vec]
|
||||
LL + /// [Vec]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:63:13
|
||||
|
@ -360,8 +383,9 @@ LL | /// [`Vec`][Vec]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`Vec`]
|
||||
| ~~~~~~~
|
||||
LL - /// [`Vec`][Vec]
|
||||
LL + /// [`Vec`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:65:11
|
||||
|
@ -375,8 +399,9 @@ LL | /// [Vec][std::vec::Vec]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [Vec]
|
||||
| ~~~~~
|
||||
LL - /// [Vec][std::vec::Vec]
|
||||
LL + /// [Vec]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:67:13
|
||||
|
@ -390,8 +415,9 @@ LL | /// [`Vec`][std::vec::Vec]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`Vec`]
|
||||
| ~~~~~~~
|
||||
LL - /// [`Vec`][std::vec::Vec]
|
||||
LL + /// [`Vec`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:69:21
|
||||
|
@ -405,8 +431,9 @@ LL | /// [std::vec::Vec][Vec]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [std::vec::Vec]
|
||||
| ~~~~~~~~~~~~~~~
|
||||
LL - /// [std::vec::Vec][Vec]
|
||||
LL + /// [std::vec::Vec]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:71:23
|
||||
|
@ -420,8 +447,9 @@ LL | /// [`std::vec::Vec`][Vec]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`std::vec::Vec`]
|
||||
| ~~~~~~~~~~~~~~~~~
|
||||
LL - /// [`std::vec::Vec`][Vec]
|
||||
LL + /// [`std::vec::Vec`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:73:21
|
||||
|
@ -435,8 +463,9 @@ LL | /// [std::vec::Vec][std::vec::Vec]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [std::vec::Vec]
|
||||
| ~~~~~~~~~~~~~~~
|
||||
LL - /// [std::vec::Vec][std::vec::Vec]
|
||||
LL + /// [std::vec::Vec]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:75:23
|
||||
|
@ -450,8 +479,9 @@ LL | /// [`std::vec::Vec`][std::vec::Vec]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`std::vec::Vec`]
|
||||
| ~~~~~~~~~~~~~~~~~
|
||||
LL - /// [`std::vec::Vec`][std::vec::Vec]
|
||||
LL + /// [`std::vec::Vec`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:78:13
|
||||
|
@ -465,8 +495,9 @@ LL | /// [usize][usize]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [usize]
|
||||
| ~~~~~~~
|
||||
LL - /// [usize][usize]
|
||||
LL + /// [usize]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:80:15
|
||||
|
@ -480,8 +511,9 @@ LL | /// [`usize`][usize]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`usize`]
|
||||
| ~~~~~~~~~
|
||||
LL - /// [`usize`][usize]
|
||||
LL + /// [`usize`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:82:13
|
||||
|
@ -495,8 +527,9 @@ LL | /// [usize][std::primitive::usize]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [usize]
|
||||
| ~~~~~~~
|
||||
LL - /// [usize][std::primitive::usize]
|
||||
LL + /// [usize]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:84:15
|
||||
|
@ -510,8 +543,9 @@ LL | /// [`usize`][std::primitive::usize]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`usize`]
|
||||
| ~~~~~~~~~
|
||||
LL - /// [`usize`][std::primitive::usize]
|
||||
LL + /// [`usize`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:86:29
|
||||
|
@ -525,8 +559,9 @@ LL | /// [std::primitive::usize][usize]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [std::primitive::usize]
|
||||
| ~~~~~~~~~~~~~~~~~~~~~~~
|
||||
LL - /// [std::primitive::usize][usize]
|
||||
LL + /// [std::primitive::usize]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:88:31
|
||||
|
@ -540,8 +575,9 @@ LL | /// [`std::primitive::usize`][usize]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`std::primitive::usize`]
|
||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
LL - /// [`std::primitive::usize`][usize]
|
||||
LL + /// [`std::primitive::usize`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:90:29
|
||||
|
@ -555,8 +591,9 @@ LL | /// [std::primitive::usize][std::primitive::usize]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [std::primitive::usize]
|
||||
| ~~~~~~~~~~~~~~~~~~~~~~~
|
||||
LL - /// [std::primitive::usize][std::primitive::usize]
|
||||
LL + /// [std::primitive::usize]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:92:31
|
||||
|
@ -570,8 +607,9 @@ LL | /// [`std::primitive::usize`][std::primitive::usize]
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`std::primitive::usize`]
|
||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
LL - /// [`std::primitive::usize`][std::primitive::usize]
|
||||
LL + /// [`std::primitive::usize`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:95:20
|
||||
|
@ -585,8 +623,9 @@ LL | /// [dummy_target][dummy_target] TEXT
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [dummy_target] TEXT
|
||||
| ~~~~~~~~~~~~~~
|
||||
LL - /// [dummy_target][dummy_target] TEXT
|
||||
LL + /// [dummy_target] TEXT
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:97:22
|
||||
|
@ -600,8 +639,9 @@ LL | /// [`dummy_target`][dummy_target] TEXT
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`dummy_target`] TEXT
|
||||
| ~~~~~~~~~~~~~~~~
|
||||
LL - /// [`dummy_target`][dummy_target] TEXT
|
||||
LL + /// [`dummy_target`] TEXT
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:105:20
|
||||
|
@ -620,8 +660,9 @@ LL | /// [dummy_target]: dummy_target
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [dummy_target]
|
||||
| ~~~~~~~~~~~~~~
|
||||
LL - /// [dummy_target][dummy_target]
|
||||
LL + /// [dummy_target]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:107:22
|
||||
|
@ -640,8 +681,9 @@ LL | /// [dummy_target]: dummy_target
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`dummy_target`]
|
||||
| ~~~~~~~~~~~~~~~~
|
||||
LL - /// [`dummy_target`][dummy_target]
|
||||
LL + /// [`dummy_target`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:110:11
|
||||
|
@ -660,8 +702,9 @@ LL | /// [Vec]: Vec
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [Vec]
|
||||
| ~~~~~
|
||||
LL - /// [Vec][Vec]
|
||||
LL + /// [Vec]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:112:13
|
||||
|
@ -680,8 +723,9 @@ LL | /// [Vec]: Vec
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`Vec`]
|
||||
| ~~~~~~~
|
||||
LL - /// [`Vec`][Vec]
|
||||
LL + /// [`Vec`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:114:11
|
||||
|
@ -700,8 +744,9 @@ LL | /// [std::vec::Vec]: Vec
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [Vec]
|
||||
| ~~~~~
|
||||
LL - /// [Vec][std::vec::Vec]
|
||||
LL + /// [Vec]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:116:13
|
||||
|
@ -720,8 +765,9 @@ LL | /// [std::vec::Vec]: Vec
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`Vec`]
|
||||
| ~~~~~~~
|
||||
LL - /// [`Vec`][std::vec::Vec]
|
||||
LL + /// [`Vec`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:118:21
|
||||
|
@ -740,8 +786,9 @@ LL | /// [Vec]: Vec
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [std::vec::Vec]
|
||||
| ~~~~~~~~~~~~~~~
|
||||
LL - /// [std::vec::Vec][Vec]
|
||||
LL + /// [std::vec::Vec]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:120:23
|
||||
|
@ -760,8 +807,9 @@ LL | /// [Vec]: Vec
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`std::vec::Vec`]
|
||||
| ~~~~~~~~~~~~~~~~~
|
||||
LL - /// [`std::vec::Vec`][Vec]
|
||||
LL + /// [`std::vec::Vec`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:122:21
|
||||
|
@ -780,8 +828,9 @@ LL | /// [std::vec::Vec]: Vec
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [std::vec::Vec]
|
||||
| ~~~~~~~~~~~~~~~
|
||||
LL - /// [std::vec::Vec][std::vec::Vec]
|
||||
LL + /// [std::vec::Vec]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:124:23
|
||||
|
@ -800,8 +849,9 @@ LL | /// [std::vec::Vec]: Vec
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`std::vec::Vec`]
|
||||
| ~~~~~~~~~~~~~~~~~
|
||||
LL - /// [`std::vec::Vec`][std::vec::Vec]
|
||||
LL + /// [`std::vec::Vec`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:127:13
|
||||
|
@ -820,8 +870,9 @@ LL | /// [usize]: usize
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [usize]
|
||||
| ~~~~~~~
|
||||
LL - /// [usize][usize]
|
||||
LL + /// [usize]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:129:15
|
||||
|
@ -840,8 +891,9 @@ LL | /// [usize]: usize
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`usize`]
|
||||
| ~~~~~~~~~
|
||||
LL - /// [`usize`][usize]
|
||||
LL + /// [`usize`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:131:13
|
||||
|
@ -860,8 +912,9 @@ LL | /// [std::primitive::usize]: usize
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [usize]
|
||||
| ~~~~~~~
|
||||
LL - /// [usize][std::primitive::usize]
|
||||
LL + /// [usize]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:133:15
|
||||
|
@ -880,8 +933,9 @@ LL | /// [std::primitive::usize]: usize
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`usize`]
|
||||
| ~~~~~~~~~
|
||||
LL - /// [`usize`][std::primitive::usize]
|
||||
LL + /// [`usize`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:135:29
|
||||
|
@ -900,8 +954,9 @@ LL | /// [usize]: usize
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [std::primitive::usize]
|
||||
| ~~~~~~~~~~~~~~~~~~~~~~~
|
||||
LL - /// [std::primitive::usize][usize]
|
||||
LL + /// [std::primitive::usize]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:137:31
|
||||
|
@ -920,8 +975,9 @@ LL | /// [usize]: usize
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`std::primitive::usize`]
|
||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
LL - /// [`std::primitive::usize`][usize]
|
||||
LL + /// [`std::primitive::usize`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:139:29
|
||||
|
@ -940,8 +996,9 @@ LL | /// [std::primitive::usize]: usize
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [std::primitive::usize]
|
||||
| ~~~~~~~~~~~~~~~~~~~~~~~
|
||||
LL - /// [std::primitive::usize][std::primitive::usize]
|
||||
LL + /// [std::primitive::usize]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:141:31
|
||||
|
@ -960,8 +1017,9 @@ LL | /// [std::primitive::usize]: usize
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`std::primitive::usize`]
|
||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
LL - /// [`std::primitive::usize`][std::primitive::usize]
|
||||
LL + /// [`std::primitive::usize`]
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:144:20
|
||||
|
@ -980,8 +1038,9 @@ LL | /// [dummy_target]: dummy_target
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [dummy_target] TEXT
|
||||
| ~~~~~~~~~~~~~~
|
||||
LL - /// [dummy_target][dummy_target] TEXT
|
||||
LL + /// [dummy_target] TEXT
|
||||
|
|
||||
|
||||
error: redundant explicit link target
|
||||
--> $DIR/redundant_explicit_links.rs:146:22
|
||||
|
@ -1000,8 +1059,9 @@ LL | /// [dummy_target]: dummy_target
|
|||
the label is used to resolve intra-doc links
|
||||
help: remove explicit link target
|
||||
|
|
||||
LL | /// [`dummy_target`] TEXT
|
||||
| ~~~~~~~~~~~~~~~~
|
||||
LL - /// [`dummy_target`][dummy_target] TEXT
|
||||
LL + /// [`dummy_target`] TEXT
|
||||
|
|
||||
|
||||
error: aborting due to 60 previous errors
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue