Skip to content
Merged
Changes from all commits
Commits
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
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