-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
improve doc of into_boxed_slice and impl From<Vec<T>> for Box<[T]> #105032
Conversation
(rustbot has picked a reviewer for you, use r? to override) |
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
@rustbot label +A-docs |
Thank you! @bors r+ rollup |
Rollup of 7 pull requests Successful merges: - rust-lang#104903 (Use ocx.normalize in report_projection_error) - rust-lang#105032 (improve doc of into_boxed_slice and impl From<Vec<T>> for Box<[T]>) - rust-lang#105100 (Add missing intra-doc link) - rust-lang#105181 (Don't add a note for implementing a trait if its inner type is erroneous) - rust-lang#105182 (Rustdoc-Json: Don't inline foreign traits) - rust-lang#105188 (Don't elide type information when printing E0308 with `-Zverbose`) - rust-lang#105189 (rustdoc: clean up redundant CSS on `.rustdoc-toggle.hideme`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Improves description of
into_boxed_slice
, and adds example toimpl From<Vec<T>> for Box<[T]>
.Fixes #98908