-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Rollup of 7 pull requests #101411
Rollup of 7 pull requests #101411
Commits on Sep 2, 2022
-
The doc link from `DedupSortedIter` to `BTreeMap::bulk_build_from_sorted_iter` was broken when building internal documentation,
Configuration menu - View commit details
-
Copy full SHA for 3fee843 - Browse repository at this point
Copy the full SHA 3fee843View commit details
Commits on Sep 3, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 3afbc11 - Browse repository at this point
Copy the full SHA 3afbc11View commit details -
Don't delay invalid lhs bug unless we know it'll be replaced by one i…
…n check_overloaded_binop
Configuration menu - View commit details
-
Copy full SHA for 7714562 - Browse repository at this point
Copy the full SHA 7714562View commit details -
Configuration menu - View commit details
-
Copy full SHA for 69721de - Browse repository at this point
Copy the full SHA 69721deView commit details -
rustdoc: remove redundant mobile-sized
.source nav:not(.sidebar).sub
Configuration menu - View commit details
-
Copy full SHA for 3e743a0 - Browse repository at this point
Copy the full SHA 3e743a0View commit details
Commits on Sep 4, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 98f4b20 - Browse repository at this point
Copy the full SHA 98f4b20View commit details -
Configuration menu - View commit details
-
Copy full SHA for 41703e6 - Browse repository at this point
Copy the full SHA 41703e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4a3e169 - Browse repository at this point
Copy the full SHA 4a3e169View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b328ea - Browse repository at this point
Copy the full SHA 2b328eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 835a461 - Browse repository at this point
Copy the full SHA 835a461View commit details -
Rollup merge of rust-lang#101322 - ChrisDenton:internal-doc, r=Mark-S…
…imulacrum Fix internal doc link The doc link from `DedupSortedIter` to `BTreeMap::bulk_build_from_sorted_iter` was broken when building internal documentation, This prevented me from building internal documentation locally: ``` R:\Rust\rust> $env:RUSTDOCFLAGS="--document-private-items" R:\Rust\rust> x doc library/std --open --stage 0 Building rustbuild Compiling bootstrap v0.0.0 (R:\Rust\rust\src\bootstrap) Finished dev [unoptimized] target(s) in 3.15s Documenting stage0 std (x86_64-pc-windows-msvc) Documenting core v0.0.0 (R:\Rust\rust\library\core) Finished release [optimized] target(s) in 36.42s Checking core v0.0.0 (R:\Rust\rust\library\core) Checking rustc-std-workspace-core v1.99.0 (R:\Rust\rust\library\rustc-std-workspace-core) Checking compiler_builtins v0.1.79 Documenting alloc v0.0.0 (R:\Rust\rust\library\alloc) error: unresolved link to `BTreeMap::bulk_build_from_sorted_iter` --> library\alloc\src\collections\btree\dedup_sorted_iter.rs:6:15 | 6 | /// Used by [`BTreeMap::bulk_build_from_sorted_iter`]. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no item named `BTreeMap` in scope | = note: `-D rustdoc::broken-intra-doc-links` implied by `-D warnings` error: could not document `alloc` ```
Configuration menu - View commit details
-
Copy full SHA for c4ea4fb - Browse repository at this point
Copy the full SHA c4ea4fbView commit details -
Rollup merge of rust-lang#101385 - BartMassey-upstream:file-doc, r=th…
…omcc updated description of File struct in std::fs I've seen several folks confused by the description of `std::fs::File` as "A reference to an open file on the filesystem." Apparently the word `reference` is sometimes taken to mean a Rust `&` reference, leading to confusion. Here's a recent representative [Reddit thread](https://www.reddit.com/r/rust/comments/x4k0lv/comment/imxu7v2/?utm_source=share&utm_medium=web2x&context=3), but I've seen this before as well. This patch changes the description to "An object providing access to an open file on the filesystem." Hopefully this is clearer.
Configuration menu - View commit details
-
Copy full SHA for 8f8a36d - Browse repository at this point
Copy the full SHA 8f8a36dView commit details -
Rollup merge of rust-lang#101388 - compiler-errors:issue-101376, r=fe…
…e1-dead Don't delay invalid LHS bug unless it will be covered by an error in `check_overloaded_binop` Fixes rust-lang#101376
Configuration menu - View commit details
-
Copy full SHA for dd35e2f - Browse repository at this point
Copy the full SHA dd35e2fView commit details -
Rollup merge of rust-lang#101394 - CAD97:patch-3, r=Mark-Simulacrum
Forbid mixing `System` with direct sytem allocator calls e.g. [on windows](https://github.com/rust-lang/rust/blob/dec689432fac6720b2f18101ac28a21add98b1b8/library/std/src/sys/windows/alloc.rs#L129-L178), trying to mix `System::alloc` and `HeapFree` will not work because of the extra work done to serve higher alignments.
Configuration menu - View commit details
-
Copy full SHA for 723f0c4 - Browse repository at this point
Copy the full SHA 723f0c4View commit details -
Rollup merge of rust-lang#101397 - notriddle:notriddle/source-nav-not…
…-sidebar-sub, r=GuillaumeGomez rustdoc: remove redundant mobile-sized `.source nav:not(.sidebar).sub` It's redundant because there's already a selector `.source nav.sub` with exactly the same margin-left at [line 796]. [line 796]: https://github.com/rust-lang/rust/blob/84f0c3f79a85329dd79a54694ff8a7f427c842e9/src/librustdoc/html/static/css/rustdoc.css#L796 This selector was added in 1e98fb1, along with an identical desktop selector, but that desktop selector was removed in 6a5f8b1 as part of a larger simplification.
Configuration menu - View commit details
-
Copy full SHA for 43a7438 - Browse repository at this point
Copy the full SHA 43a7438View commit details -
Rollup merge of rust-lang#101401 - mx00s:expand-const, r=fee1-dead
Make `char::is_lowercase` and `char::is_uppercase` const Implements rust-lang#101400.
Configuration menu - View commit details
-
Copy full SHA for d9bba11 - Browse repository at this point
Copy the full SHA d9bba11View commit details -
Rollup merge of rust-lang#101407 - GuillaumeGomez:rm-duplicated-gui-t…
…est, r=Dylan-DPC Remove duplicated test (superseeded by search-form-elements.goml) I realized it when I worked on rust-lang#101348. The checks are more complete in `search-form-elements.goml` (for example [here](https://github.com/rust-lang/rust/blob/master/src/test/rustdoc-gui/search-form-elements.goml#L12-L29)). r? `@Dylan-DPC`
Configuration menu - View commit details
-
Copy full SHA for cea11f5 - Browse repository at this point
Copy the full SHA cea11f5View commit details