Skip to content
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 11 pull requests #130902

Closed
wants to merge 24 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4788e8c
Add the library workspace to the suggested rust-analyzer config
bjorn3 Sep 18, 2024
86493d4
Extend rustdoc template check to detect unneeded comments
GuillaumeGomez Sep 22, 2024
912e1ae
Remove unneeded jinja comments in templates
GuillaumeGomez Sep 22, 2024
986e20d
Fixed diagnostics for coroutines with () as input.
91khr Sep 25, 2024
8f1ed9b
Utf8Chunks: add link to Utf8Chunk
RalfJung Sep 25, 2024
d3e59a5
Revert Break into the debugger on panic (129019)
ChrisDenton Sep 25, 2024
afb7eef
Pass Module Analysis Manager to Standard Instrumentations
Sep 25, 2024
a51b0a2
Use `mem::offset_of!` for `sockaddr_un.sun_path`
cuviper Sep 25, 2024
5892187
Fix the misleading diagnostic for let_underscore_drop on type without…
makai410 Sep 26, 2024
1bef68c
Update FIXME comment in s390x_unknown_linux_*.rs
taiki-e Sep 26, 2024
ef87a7f
add missing FIXME(const-hack)
RalfJung Sep 26, 2024
9431d1a
Add `sun_path` to the fake doc `sockaddr_un`
cuviper Sep 26, 2024
e29ff8c
Pass correct HirId to late_bound_vars in diagnostic code
fmease Sep 26, 2024
16726f0
Rollup merge of #130517 - bjorn3:update_ra_config, r=onur-ozkan
workingjubilee Sep 26, 2024
de98278
Rollup merge of #130706 - GuillaumeGomez:remove-unneeded-jinja-commen…
workingjubilee Sep 26, 2024
e3fe4a2
Rollup merge of #130820 - 91khr:fix-coroutine-unit-arg, r=compiler-er…
workingjubilee Sep 26, 2024
3005040
Rollup merge of #130833 - makai410:master, r=compiler-errors,fee1-dead
workingjubilee Sep 26, 2024
0f628b2
Rollup merge of #130845 - RalfJung:utf8chunk, r=tgross35
workingjubilee Sep 26, 2024
6798174
Rollup merge of #130846 - ChrisDenton:revert-break, r=Noratrieb
workingjubilee Sep 26, 2024
7939ed5
Rollup merge of #130850 - saveasguy:pass-mam-to-standrd-instrumentati…
workingjubilee Sep 26, 2024
37ed94f
Rollup merge of #130861 - cuviper:sun-path-offset, r=ibraheemdev
workingjubilee Sep 26, 2024
0b91f88
Rollup merge of #130868 - taiki-e:s390x-fixme, r=jieyouxu
workingjubilee Sep 26, 2024
6490a7d
Rollup merge of #130879 - fmease:fix-diag-ice, r=compiler-errors
workingjubilee Sep 26, 2024
0aba6a5
Rollup merge of #130880 - RalfJung:const-hack, r=scottmcm
workingjubilee Sep 26, 2024
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
Utf8Chunks: add link to Utf8Chunk
  • Loading branch information
RalfJung committed Sep 25, 2024
commit 8f1ed9b2e2930ded9c273fec566131519205a866
4 changes: 4 additions & 0 deletions library/core/src/str/lossy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ impl [u8] {
/// Creates an iterator over the contiguous valid UTF-8 ranges of this
/// slice, and the non-UTF-8 fragments in between.
///
/// See the [`Utf8Chunk`] type for documenation of the items yielded by this iterator.
///
/// # Examples
///
/// This function formats arbitrary but mostly-UTF-8 bytes into Rust source
Expand Down Expand Up @@ -148,6 +150,8 @@ impl fmt::Debug for Debug<'_> {
/// If you want a simple conversion from UTF-8 byte slices to string slices,
/// [`from_utf8`] is easier to use.
///
/// See the [`Utf8Chunk`] type for documenation of the items yielded by this iterator.
///
/// [byteslice]: slice
/// [`from_utf8`]: super::from_utf8
///
Expand Down
Loading