Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
67e8f12
Expose `Concurrent` (private type in public i'face)
eggyal May 14, 2021
1960503
adding time complexity for partition_in_place iter method
May 15, 2021
85e4177
adding algorithm explanation for partition_in_place iter method and b…
May 18, 2021
d730cc6
Add diagnostic item to `CStr`
mgacek8 May 18, 2021
24480de
Add method-toggle to <details> for methods.
jsha May 10, 2021
f9752b4
Fix UB in documented example for `ptr::swap`
steffahn May 19, 2021
ec32bcf
Fix invalid CSS rules for a:hover
GuillaumeGomez May 19, 2021
50a9f00
CTFE Machine: do not expose Allocation
RalfJung May 19, 2021
39441bb
Make a ui test to take the role of libproc_macro #[test] tests
dtolnay Apr 29, 2021
3c16c0e
Move proc_macro tests to ui test
dtolnay Apr 29, 2021
faad7e2
Make a more meaningful test for Punct eq
dtolnay Apr 29, 2021
965bce4
Add proc macro Literal parse test
dtolnay Apr 29, 2021
34585cb
impl FromStr for proc_macro::Literal
dtolnay Apr 29, 2021
a1ac372
Rollup merge of #84717 - dtolnay:literalfromstr, r=petrochenkov
RalfJung May 19, 2021
4217430
Rollup merge of #85169 - jsha:hoist-classes, r=GuillaumeGomez
RalfJung May 19, 2021
a552b5b
Rollup merge of #85287 - eggyal:expose-test-concurrent, r=m-ou-se
RalfJung May 19, 2021
c1c4cd5
Rollup merge of #85315 - satylogin:master, r=yaahc
RalfJung May 19, 2021
1207b7f
Rollup merge of #85439 - mgacek8:add_diagnostic_item_to_CStr_type, r=…
RalfJung May 19, 2021
2065c4b
Rollup merge of #85464 - steffahn:fix_ub_in_ptr_swap_docs, r=dtolnay
RalfJung May 19, 2021
b2becf0
Rollup merge of #85470 - GuillaumeGomez:fix-css-rules, r=jsha
RalfJung May 19, 2021
9fa15ff
Rollup merge of #85472 - RalfJung:allocation, r=oli-obk
RalfJung May 19, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions src/librustdoc/html/static/themes/ayu.css
Original file line number Diff line number Diff line change
Expand Up @@ -151,17 +151,14 @@ pre, .rustdoc.source .example-wrap {
color: #c5c5c5;
}

.content a:hover {
.search-results a:hover {
background-color: #777;
}

.content a:focus {
.search-results a:focus {
color: #000 !important;
background-color: #c6afb3;
}
.content a:focus {
color: #000 !important;
}
.search-results a {
color: #0096cf;
}
Expand Down
4 changes: 2 additions & 2 deletions src/librustdoc/html/static/themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ pre, .rustdoc.source .example-wrap {
color: #ddd;
}

.content a:hover {
.search-results a:hover {
background-color: #777;
}

.content a:focus {
.search-results a:focus {
color: #eee !important;
background-color: #616161;
}
Expand Down
4 changes: 2 additions & 2 deletions src/librustdoc/html/static/themes/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ pre, .rustdoc.source .example-wrap {
color: #4E4C4C;
}

.content a:hover {
.search-results a:hover {
background-color: #ddd;
}

.content a:focus {
.search-results a:focus {
color: #000 !important;
background-color: #ccc;
}
Expand Down