File tree 6 files changed +13
-12
lines changed
6 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -1927,7 +1927,7 @@ fn can_elide_trait_object_lifetime_bound<'tcx>(
1927
1927
preds : & ' tcx ty:: List < ty:: PolyExistentialPredicate < ' tcx > > ,
1928
1928
tcx : TyCtxt < ' tcx > ,
1929
1929
) -> bool {
1930
- // Below we quote extracts from https://doc.rust-lang.org/reference/lifetime-elision.html#default-trait-object-lifetimes
1930
+ // Below we quote extracts from https://doc.rust-lang.org/stable/ reference/lifetime-elision.html#default-trait-object-lifetimes
1931
1931
1932
1932
// > If the trait object is used as a type argument of a generic type then the containing type is
1933
1933
// > first used to try to infer a bound.
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ use crate::html::render::write_shared::write_shared;
32
32
use crate :: html:: url_parts_builder:: UrlPartsBuilder ;
33
33
use crate :: html:: { layout, sources, static_files} ;
34
34
use crate :: scrape_examples:: AllCallLocations ;
35
- use crate :: try_err;
35
+ use crate :: { DOC_RUST_LANG_ORG_CHANNEL , try_err} ;
36
36
37
37
/// Major driving force in all rustdoc rendering. This contains information
38
38
/// about where in the tree-like hierarchy rendering is occurring and controls
@@ -730,7 +730,7 @@ impl<'tcx> FormatRenderer<'tcx> for Context<'tcx> {
730
730
<noscript>\
731
731
<section>\
732
732
<p>You need to enable JavaScript to use keyboard commands or search.</p>\
733
- <p>For more information, browse the <a href=\" https://doc.rust-lang.org /rustdoc/\" >rustdoc handbook</a>.</p>\
733
+ <p>For more information, browse the <a href=\" {DOC_RUST_LANG_ORG_CHANNEL} /rustdoc/\" >rustdoc handbook</a>.</p>\
734
734
</section>\
735
735
</noscript>",
736
736
)
Original file line number Diff line number Diff line change @@ -1392,10 +1392,10 @@ href="https://doc.rust-lang.org/${channel}/rustdoc/read-documentation/search.htm
1392
1392
<code>-> vec</code> or <code>String, enum:Cow -> bool</code>)" ,
1393
1393
"You can look for items with an exact name by putting double quotes around \
1394
1394
your request: <code>\"string\"</code>" ,
1395
- " Look for functions that accept or return \
1396
- <a href=\"https://doc.rust-lang.org/std/primitive.slice.html\">slices</a> and \
1397
- <a href=\"https://doc.rust-lang.org/std/primitive.array.html\">arrays</a> by writing \
1398
- square brackets (e.g., <code>-> [u8]</code> or <code>[] -> Option</code>)" ,
1395
+ ` Look for functions that accept or return \
1396
+ <a href=\"https://doc.rust-lang.org/${ channel } / std/primitive.slice.html\">slices</a> and \
1397
+ <a href=\"https://doc.rust-lang.org/${ channel } / std/primitive.array.html\">arrays</a> by writing \
1398
+ square brackets (e.g., <code>-> [u8]</code> or <code>[] -> Option</code>)` ,
1399
1399
"Look for items inside another one by searching for a path: <code>vec::Vec</code>" ,
1400
1400
] . map ( x => "<p>" + x + "</p>" ) . join ( "" ) ;
1401
1401
const div_infos = document . createElement ( "div" ) ;
Original file line number Diff line number Diff line change @@ -4408,17 +4408,18 @@ ${item.displayPath}<span class="${type}">${name}</span>\
4408
4408
}
4409
4409
} ) ;
4410
4410
} else if ( query . error === null ) {
4411
+ const channel = getVar ( "channel" ) ;
4411
4412
output . className = "search-failed" + extraClass ;
4412
4413
output . innerHTML = "No results :(<br/>" +
4413
4414
"Try on <a href=\"https://duckduckgo.com/?q=" +
4414
4415
encodeURIComponent ( "rust " + query . userQuery ) +
4415
4416
"\">DuckDuckGo</a>?<br/><br/>" +
4416
4417
"Or try looking in one of these:<ul><li>The <a " +
4417
- " href=\"https://doc.rust-lang.org/reference/index.html\">Rust Reference</a> " +
4418
+ ` href=\"https://doc.rust-lang.org/${ channel } / reference/index.html\">Rust Reference</a> ` +
4418
4419
" for technical details about the language.</li><li><a " +
4419
- " href=\"https://doc.rust-lang.org/rust-by-example/index.html\">Rust By " +
4420
+ ` href=\"https://doc.rust-lang.org/${ channel } / rust-by-example/index.html\">Rust By ` +
4420
4421
"Example</a> for expository code examples.</a></li><li>The <a " +
4421
- " href=\"https://doc.rust-lang.org/book/index.html\">Rust Book</a> for " +
4422
+ ` href=\"https://doc.rust-lang.org/${ channel } / book/index.html\">Rust Book</a> for ` +
4422
4423
"introductions to language features and the language itself.</li><li><a " +
4423
4424
"href=\"https://docs.rs\">Docs.rs</a> for documentation of crates released on" +
4424
4425
" <a href=\"https://crates.io/\">crates.io</a>.</li></ul>" ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ <h2 id="layout" class="section-header"> {# #}
10
10
unstable</ strong > and may even differ between compilations. {#+ #}
11
11
The only exception is types with certain < code > repr(...)</ code > {#+ #}
12
12
attributes. Please see the Rust Reference's {#+ #}
13
- < a href ="https://doc.rust-lang.org /reference/type-layout.html "> “Type Layout”</ a > {#+ #}
13
+ < a href ="{{ crate::DOC_RUST_LANG_ORG_CHANNEL }} /reference/type-layout.html "> “Type Layout”</ a > {#+ #}
14
14
chapter for details on type layout guarantees. {# #}
15
15
</ p > {# #}
16
16
</ div > {# #}
Original file line number Diff line number Diff line change 7
7
{{ size +}} bytes
8
8
{% endif %}
9
9
{% if is_uninhabited %}
10
- {# +#} (< a href ="https://doc.rust-lang.org/stable /reference/glossary.html#uninhabited "> uninhabited</ a > )
10
+ {# +#} (< a href ="{{ crate::DOC_RUST_LANG_ORG_CHANNEL }} /reference/glossary.html#uninhabited "> uninhabited</ a > )
11
11
{% endif %}
12
12
{% endif %}
You can’t perform that action at this time.
0 commit comments