Skip to content

Rollup of 18 pull requests #43800

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 46 commits into from
Aug 11, 2017
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
ba53f95
E0122: clarify wording
RalfJung Jul 12, 2017
5067ef2
fix line lengths
RalfJung Jul 12, 2017
5b30cc1
Detect relative urls in tidy check
ruuda Aug 3, 2017
0f924b8
add test
arshiamufti Aug 4, 2017
608863d
Only allow long relative urls after a link label
ruuda Aug 4, 2017
b298a58
Update String Deref to explain why using &String does not always work
natboehm Aug 4, 2017
94f7511
test MIR validation statements in closures
RalfJung Aug 5, 2017
970c780
Reexport all SyntaxExtension variants
oli-obk Aug 7, 2017
49310a9
Stop using URL shortener in docs
ollie27 Aug 7, 2017
2a62b91
Update explanation of deref coercion
natboehm Aug 7, 2017
43760a4
Encode proper spans in crate metadata.
ibabushkin Aug 8, 2017
6c0f2aa
fix assertion - trait object pointers don't have infinite fields
Gankra Aug 8, 2017
cf7f305
Ignore tests that fail on stage1
MaloJaffre Aug 8, 2017
40f5b30
Update solution to add using `&*` as well as `as_str()`
natboehm Aug 8, 2017
8ac4336
Improve headers linking
GuillaumeGomez Aug 8, 2017
fac6ce7
Fix trait name `Deref`
natboehm Aug 8, 2017
21a707e
explain that the example is indeed UB, but that's okay
RalfJung Aug 8, 2017
e5261c0
rustdoc: Fix broken CSS in search results
ollie27 Aug 9, 2017
445c08d
fix a typo
ubsan Aug 9, 2017
8c311e5
Fix typo in unicode char definition
mattico Aug 10, 2017
27d7e61
Fix typo corersponding -> corresponding
prisme60 Aug 10, 2017
645117f
Add missing links on File struct docs
GuillaumeGomez Aug 10, 2017
9e25984
Add missing links in ReadDir docs
GuillaumeGomez Aug 10, 2017
ac0ee51
Add missing links in io::Error docs
GuillaumeGomez Aug 10, 2017
592bdc3
Add missing links in io module docs
GuillaumeGomez Aug 10, 2017
972d67c
Add missing links for Error docs
GuillaumeGomez Aug 10, 2017
4b80d59
Fix broken links in Arc documentation
j-browne Aug 10, 2017
b617200
Improve enum variants display
GuillaumeGomez Aug 10, 2017
7a80cf1
Rollup merge of #43176 - RalfJung:explain, r=eddyb
GuillaumeGomez Aug 11, 2017
6432313
Rollup merge of #43632 - ruuda:allow-long-relative-urls, r=Mark-Simul…
GuillaumeGomez Aug 11, 2017
96c09f8
Rollup merge of #43650 - RalfJung:mir-validate, r=arielb1
GuillaumeGomez Aug 11, 2017
aebfe2b
Rollup merge of #43712 - oli-obk:cfg, r=arielb1
GuillaumeGomez Aug 11, 2017
e9d3909
Rollup merge of #43715 - ollie27:docs_long_link, r=QuietMisdreavus
GuillaumeGomez Aug 11, 2017
03abb9d
Rollup merge of #43721 - natboehm:patch-1, r=steveklabnik
GuillaumeGomez Aug 11, 2017
6047e93
Rollup merge of #43739 - ibabushkin:master, r=eddyb
GuillaumeGomez Aug 11, 2017
18238c7
Rollup merge of #43741 - Gankro:fix-assert, r=eddyb
GuillaumeGomez Aug 11, 2017
2ad3baa
Rollup merge of #43744 - MaloJaffre:stage1-test, r=Mark-Simulacrum
GuillaumeGomez Aug 11, 2017
42b0681
Rollup merge of #43747 - GuillaumeGomez:fix-css, r=QuietMisdreavus
GuillaumeGomez Aug 11, 2017
35947cf
Rollup merge of #43752 - arshiamufti:union-test, r=estebank
GuillaumeGomez Aug 11, 2017
6fac8dc
Rollup merge of #43760 - ollie27:rustdoc_search_css, r=GuillaumeGomez
GuillaumeGomez Aug 11, 2017
7fa572e
Rollup merge of #43773 - ubsan:patch-1, r=eddyb
GuillaumeGomez Aug 11, 2017
6af7b9d
Rollup merge of #43779 - mattico:fix-unicode-typo, r=aidanhs
GuillaumeGomez Aug 11, 2017
3e6e262
Rollup merge of #43783 - prisme60:prisme60-typo, r=Mark-Simulacrum
GuillaumeGomez Aug 11, 2017
4f5f3fa
Rollup merge of #43791 - GuillaumeGomez:file-docs, r=QuietMisdreavus
GuillaumeGomez Aug 11, 2017
77904aa
Rollup merge of #43793 - j-browne:master, r=steveklabnik
GuillaumeGomez Aug 11, 2017
742bba0
Rollup merge of #43795 - GuillaumeGomez:improve-variants-doc-style, r…
GuillaumeGomez Aug 11, 2017
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
Prev Previous commit
Next Next commit
Improve enum variants display
  • Loading branch information
GuillaumeGomez committed Aug 10, 2017
commit b6172008bf3165dcc28973e64ef3ff346be9f23a
4 changes: 4 additions & 0 deletions src/librustdoc/html/static/rustdoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,10 @@ span.since {
left: 0;
}

.variant + .toggle-wrapper + .docblock > p {
margin-top: 5px;
}

.variant + .toggle-wrapper > a {
margin-top: 5px;
}
Expand Down