Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
3fe0b3d
not lint break with label and unsafe block
mu001999 Feb 23, 2025
830bd8b
Implement Default for raw pointers
ChrisDenton Apr 6, 2025
2f0ba67
fix incorrect type in cstr `to_string_lossy()` docs
jnqnfe Apr 16, 2025
5a38550
Deduplicate nix code
RossSmyth Apr 3, 2025
d14df26
Make `parent` in `download_auto_job_metrics` optional
Kobzol Apr 16, 2025
111c15c
Extract function for normalizing path delimiters to `utils`
Kobzol Apr 16, 2025
c8a882b
Add command to `citool` for generating a test dashboard
Kobzol Apr 17, 2025
a326afd
Add buttons for expanding and collapsing all test suites
Kobzol Apr 17, 2025
4b31033
Add a note about how to find tests that haven't been executed anywhere.
Kobzol Apr 17, 2025
1a6e0d5
Render test revisions separately
Kobzol Apr 17, 2025
d2c1763
Create a macro for rendering test results
Kobzol Apr 17, 2025
aa9cb70
Print number of root tests and subdirectories
Kobzol Apr 17, 2025
08cb187
Turn `test_dashboard` into a file
Kobzol Apr 17, 2025
cecf167
Add a note about the test dashboard to the post-merge report
Kobzol Apr 17, 2025
65ce38a
Add a note that explains the counts
Kobzol Apr 18, 2025
b18e373
Reduce duplicated test prefixes in nested subdirectories
Kobzol Apr 18, 2025
1b39302
Disable has_thread_local on i686-win7-windows-msvc
roblabla Apr 18, 2025
fb3cae0
std: Use fstatat() on illumos
pfmooney Apr 18, 2025
41ddf86
Make `#[naked]` an unsafe attribute
folkertdev Mar 29, 2025
d863f81
Re-remove `AdtFlags::IS_ANONYMOUS`
Sky9x Apr 19, 2025
9455414
Rollup merge of #137454 - mu001999-contrib:fix-137414, r=wesleywiser
jhpratt Apr 19, 2025
44ae11c
Rollup merge of #139297 - RossSmyth:NixClean, r=WaffleLapkin
jhpratt Apr 19, 2025
4dc4640
Rollup merge of #139535 - ChrisDenton:default-ptr, r=tgross35
jhpratt Apr 19, 2025
73de020
Rollup merge of #139753 - folkertdev:naked-function-unsafe-attribute,…
jhpratt Apr 19, 2025
8ae204a
Rollup merge of #139922 - jnqnfe:cstr_doc_fix, r=jhpratt
jhpratt Apr 19, 2025
fdcacb8
Rollup merge of #139978 - Kobzol:ci-test-summary, r=jieyouxu
jhpratt Apr 19, 2025
1aeb903
Rollup merge of #140007 - roblabla:fix-win7, r=ChrisDenton
jhpratt Apr 19, 2025
54f947c
Rollup merge of #140016 - pfmooney:illumos-fstatat, r=jhpratt
jhpratt Apr 19, 2025
c8de1ca
Rollup merge of #140025 - Sky9x:re-remove-adtflags-anon, r=compiler-e…
jhpratt Apr 19, 2025
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
fix incorrect type in cstr to_string_lossy() docs
Restoring what it said prior to commit 67065fe in which it was changed
incorrectly with no supporting explanation.

Closes #139835.
  • Loading branch information
jnqnfe committed Apr 16, 2025
commit 2f0ba6791944fbbc9236ea4138389039ebbffd4a
2 changes: 1 addition & 1 deletion library/alloc/src/ffi/c_str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,7 @@ impl CStr {
/// with the corresponding <code>&[str]</code> slice. Otherwise, it will
/// replace any invalid UTF-8 sequences with
/// [`U+FFFD REPLACEMENT CHARACTER`][U+FFFD] and return a
/// <code>[Cow]::[Owned]\(&[str])</code> with the result.
/// <code>[Cow]::[Owned]\([String])</code> with the result.
///
/// [str]: prim@str "str"
/// [Borrowed]: Cow::Borrowed
Expand Down
Loading