Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
b1a9f23
Use `LLVMDIBuilderGetOrCreateSubrange`
Zalathar Sep 19, 2025
a6d2617
Use `LLVMDIBuilderGetOrCreateArray`
Zalathar Sep 19, 2025
9daa026
Use `LLVMDIBuilder(CreateExpression|InsertDeclareRecordAtEnd)`
Zalathar Sep 19, 2025
e39e5a0
Use `LLVMDIBuilderCreate(Auto|Parameter)Variable`
Zalathar Sep 19, 2025
272d336
Remove some unnecessary `as u64` casts
Zalathar Sep 19, 2025
696add0
chore: fixes #146756
sysrex Sep 19, 2025
741e1e2
Remove unused `LLVMRustDIBuilder(Create|Dispose)`
Zalathar Sep 20, 2025
8d7e637
chore: remove dead links
sysrex Sep 22, 2025
8e37f0f
chore: remove discord references from the std library as well
sysrex Sep 24, 2025
7e58c91
usize/isize range matching error clarification
helldawg Sep 19, 2025
78ff5dd
Remove usages of `write_str` from `render_assoc_items_inner`
yotamofek Sep 23, 2025
82fecf0
Cleanup `notable_traits_decl`
yotamofek Sep 23, 2025
a40032d
Simplify notable traits map serialization
yotamofek Sep 23, 2025
4a0c7cc
fix cycle head usages tracking
lcnr Sep 26, 2025
4e44d58
rename `search_graph::Delegate` fns
lcnr Sep 26, 2025
97f6437
formatting_options: fix alternate docs 0b/0o mixup
danielverkamp Sep 26, 2025
fe3e124
doc: fix a typo in platform-support.md
lasiotus Sep 27, 2025
d8a1edc
Use `PanicHookInfo::payload_as_str` now that it's stable in beta
Zalathar Sep 27, 2025
95c146a
Fix tracking issue number for feature(macro_attr)
SimonSapin Sep 26, 2025
d42acf5
Include additional hashes in src/stage0
erickt Jun 7, 2025
76bb0d1
Update stage0 per previous commmit
Mark-Simulacrum Sep 27, 2025
760ed37
redox: switch to colon as path separator
jackpot51 Sep 27, 2025
35e582f
Library: Remove remaining private `#[repr]` workarounds
fmease Sep 27, 2025
aef976e
Add auto extra-checks in pre-push script
Shunpoco Sep 27, 2025
3a20a4d
Fix typo
SebastianSpeitel Sep 27, 2025
4e9cfc7
Rollup merge of #142139 - erickt:include-hashes, r=Mark-Simulacrum
matthiaskrgr Sep 28, 2025
4eddf64
Rollup merge of #146745 - helldawg:master, r=workingjubilee
matthiaskrgr Sep 28, 2025
e8578c8
Rollup merge of #146763 - Zalathar:di-builder, r=jdonszelmann
matthiaskrgr Sep 28, 2025
0fd9396
Rollup merge of #146788 - sysrex:146756/discord_invite, r=workingjubilee
matthiaskrgr Sep 28, 2025
f349faa
Rollup merge of #146942 - yotamofek:pr/rustdoc/finish_deprecating_wri…
matthiaskrgr Sep 28, 2025
cb4c3ad
Rollup merge of #147061 - lcnr:provisional-cache-woops, r=BoxyUwU
matthiaskrgr Sep 28, 2025
194bd77
Rollup merge of #147066 - SimonSapin:macro_attr-tracking, r=lqd
matthiaskrgr Sep 28, 2025
93fff3d
Rollup merge of #147081 - moturus:fix_md, r=workingjubilee
matthiaskrgr Sep 28, 2025
ad864de
Rollup merge of #147082 - danielverkamp:fmt-alternate-octal-binary-mi…
matthiaskrgr Sep 28, 2025
925951d
Rollup merge of #147086 - Zalathar:payload, r=jieyouxu
matthiaskrgr Sep 28, 2025
f22af64
Rollup merge of #147093 - jackpot51:redox-path, r=bjorn3
matthiaskrgr Sep 28, 2025
641beda
Rollup merge of #147095 - fmease:libprivrepr, r=dtolnay
matthiaskrgr Sep 28, 2025
f31963f
Rollup merge of #147098 - Shunpoco:issue-147088, r=Kobzol
matthiaskrgr Sep 28, 2025
f4032bc
Rollup merge of #147110 - SebastianSpeitel:patch-1, r=saethlin
matthiaskrgr Sep 28, 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
formatting_options: fix alternate docs 0b/0o mixup
The descriptions of the alternate forms of Octal and Binary were swapped
in the doc comment for FormattingOptions::alternate().
  • Loading branch information
danielverkamp committed Sep 26, 2025
commit 97f64374a9f34012c8884dbd629a896ec6ed8475
4 changes: 2 additions & 2 deletions library/core/src/fmt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,8 @@ impl FormattingOptions {
/// used. The alternate forms are:
/// - [`Debug`] : pretty-print the [`Debug`] formatting (adds linebreaks and indentation)
/// - [`LowerHex`] as well as [`UpperHex`] - precedes the argument with a `0x`
/// - [`Octal`] - precedes the argument with a `0b`
/// - [`Binary`] - precedes the argument with a `0o`
/// - [`Octal`] - precedes the argument with a `0o`
/// - [`Binary`] - precedes the argument with a `0b`
#[unstable(feature = "formatting_options", issue = "118117")]
pub const fn alternate(&mut self, alternate: bool) -> &mut Self {
if alternate {
Expand Down
Loading