mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-19 18:34:08 +00:00
rustdoc: remove std::
from primitive intra-doc link tooltips
This commit is contained in:
parent
e4b9f86054
commit
683c12cb91
@ -771,6 +771,12 @@ pub(crate) fn link_tooltip(did: DefId, fragment: &Option<UrlFragment>, cx: &Cont
|
|||||||
.or_else(|| cache.external_paths.get(&did))
|
.or_else(|| cache.external_paths.get(&did))
|
||||||
else { return String::new() };
|
else { return String::new() };
|
||||||
let mut buf = Buffer::new();
|
let mut buf = Buffer::new();
|
||||||
|
let fqp = if *shortty == ItemType::Primitive {
|
||||||
|
// primitives are documented in a crate, but not actually part of it
|
||||||
|
&fqp[fqp.len() - 1..]
|
||||||
|
} else {
|
||||||
|
&fqp
|
||||||
|
};
|
||||||
if let &Some(UrlFragment::Item(id)) = fragment {
|
if let &Some(UrlFragment::Item(id)) = fragment {
|
||||||
write!(buf, "{} ", cx.tcx().def_descr(id));
|
write!(buf, "{} ", cx.tcx().def_descr(id));
|
||||||
for component in fqp {
|
for component in fqp {
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
// @has prim_methods/index.html
|
// @has prim_methods/index.html
|
||||||
// @has - '//*[@id="main-content"]//a[@href="{{channel}}/std/primitive.char.html"]' 'char'
|
// @has - '//*[@id="main-content"]//a[@href="{{channel}}/std/primitive.char.html"]' 'char'
|
||||||
|
// @has - '//*[@id="main-content"]//a[@href="{{channel}}/std/primitive.char.html"]/@title' 'primitive char'
|
||||||
// @has - '//*[@id="main-content"]//a[@href="{{channel}}/std/primitive.char.html#method.len_utf8"]' 'char::len_utf8'
|
// @has - '//*[@id="main-content"]//a[@href="{{channel}}/std/primitive.char.html#method.len_utf8"]' 'char::len_utf8'
|
||||||
|
// @has - '//*[@id="main-content"]//a[@href="{{channel}}/std/primitive.char.html#method.len_utf8"]/@title' 'method char::len_utf8'
|
||||||
|
|
||||||
//! A [`char`] and its [`char::len_utf8`].
|
//! A [`char`] and its [`char::len_utf8`].
|
||||||
|
Loading…
Reference in New Issue
Block a user