forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#115070 - notriddle:notriddle/utf8-redundant-e…
…xplicit-links, r=GuillaumeGomez,ChAoSUnItY rustdoc: use unicode-aware checks for redundant explicit link fastpath Fixes rust-lang#115064 Fixes rust-lang#115062 Fixes rust-lang#115116
- Loading branch information
Showing
3 changed files
with
22 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// check-pass | ||
|
||
/// [`…foo`] [`…bar`] [`Err`] | ||
pub struct Broken {} | ||
|
||
/// [`…`] [`…`] [`Err`] | ||
pub struct Broken2 {} | ||
|
||
/// [`…`][…] [`…`][…] [`Err`] | ||
pub struct Broken3 {} | ||
|
||
/// […………………………][Broken3] | ||
pub struct Broken4 {} | ||
|
||
/// [Broken3][…………………………] | ||
pub struct Broken5 {} | ||
|
||
pub struct Err; |