Skip to content

Rollup of 10 pull requests #102449

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

Closed
wants to merge 28 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
c846a2a
Make `std::os::fd` public.
sunfishcode Jun 14, 2022
09bbc42
Update asrawfd.js.
sunfishcode Jun 22, 2022
bda1262
Clarify that the `fd` module is supported on Unix and WASI.
sunfishcode Jun 30, 2022
7d80510
Re-introduce `unstable` attributes.
sunfishcode Aug 23, 2022
a7f3ba9
Fix compilation of the doc tests on Windows.
sunfishcode Sep 2, 2022
f9ef7e2
code refactoring smart_resolve_report_errors
chenyukang Sep 20, 2022
7adfb44
add trivial comments
chenyukang Sep 21, 2022
fdda7e0
more code refactor on smart_resolve_report_errors
chenyukang Sep 25, 2022
db0877f
trivial fix on fallback
chenyukang Sep 25, 2022
356a52c
add regression test
Rageking8 Sep 28, 2022
4fdc78e
account for use of index-based lifetime names in print of binder
b-naber Sep 28, 2022
a670897
add test
b-naber Sep 28, 2022
9ccb851
update fixme
lcnr Sep 28, 2022
a913277
Add a niche to `Duration`, unix `SystemTime`, and non-apple `Instant`
beetrees Sep 14, 2022
5baceaf
env::temp_dir: fix a typo
RalfJung Sep 28, 2022
b707eff
rustdoc: cut margin-top from first header in docblock
notriddle Sep 28, 2022
f55ea41
rustdoc: clean up "normalize.css 8" input override CSS
notriddle Sep 28, 2022
3f21f07
rustdoc: remove bad CSS font-weight on `.impl`, `.method`, etc
notriddle Sep 28, 2022
cfe8ee2
Rollup merge of #98368 - sunfishcode:sunfishcode/std-os-fd, r=joshtri…
JohnTitor Sep 29, 2022
115b5c5
Rollup merge of #102085 - chenyukang:code-refactor, r=cjgillot
JohnTitor Sep 29, 2022
399d8c0
Rollup merge of #102368 - beetrees:nano-niche, r=joshtriplett
JohnTitor Sep 29, 2022
8fdce46
Rollup merge of #102393 - Rageking8:add-regression-test-for-issue-949…
JohnTitor Sep 29, 2022
5486864
Rollup merge of #102399 - b-naber:binder-print-ice, r=lcnr
JohnTitor Sep 29, 2022
5a268b1
Rollup merge of #102416 - lcnr:specialization-fixme, r=compiler-errors
JohnTitor Sep 29, 2022
d9097e1
Rollup merge of #102433 - RalfJung:temp-dir-typo, r=thomcc
JohnTitor Sep 29, 2022
5e7ba4f
Rollup merge of #102436 - notriddle:notriddle/normalize-form, r=Guill…
JohnTitor Sep 29, 2022
6d7e9e6
Rollup merge of #102437 - notriddle:notriddle/margin-top-h2, r=jsha
JohnTitor Sep 29, 2022
e609c73
Rollup merge of #102442 - notriddle:notriddle/header-weight, r=Guilla…
JohnTitor Sep 29, 2022
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
Update asrawfd.js.
  • Loading branch information
sunfishcode committed Aug 29, 2022
commit 09bbc4224f36e05245e63d1766364ea821c83cd3
6 changes: 3 additions & 3 deletions src/test/rustdoc-js-std/asrawfd.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ const EXPECTED = {
'others': [
// Reproduction test for https://github.com/rust-lang/rust/issues/78724
// Validate that type alias methods get the correct path.
{ 'path': 'std::os::unix::io::AsRawFd', 'name': 'as_raw_fd' },
{ 'path': 'std::os::wasi::io::AsRawFd', 'name': 'as_raw_fd' },
{ 'path': 'std::os::fd::AsRawFd', 'name': 'as_raw_fd' },
{ 'path': 'std::os::fd::AsRawFd', 'name': 'as_raw_fd' },
{ 'path': 'std::os::linux::process::PidFd', 'name': 'as_raw_fd' },
{ 'path': 'std::os::unix::io::RawFd', 'name': 'as_raw_fd' },
{ 'path': 'std::os::fd::RawFd', 'name': 'as_raw_fd' },
],
};