Skip to content

Commit 2dcdbfd

Browse files
Rollup merge of #122963 - RalfJung:core-panicking, r=m-ou-se
core/panicking: fix outdated comment Looks like this function got renamed/changed at some point and the comment did not get updated. r? ``@m-ou-se``
2 parents 4ea53c0 + e74b01e commit 2dcdbfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/panicking.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,11 @@ pub const fn panic_nounwind_fmt(fmt: fmt::Arguments<'_>, force_no_backtrace: boo
132132
#[rustc_const_unstable(feature = "panic_internals", issue = "none")]
133133
#[lang = "panic"] // needed by codegen for panic on overflow and other `Assert` MIR terminators
134134
pub const fn panic(expr: &'static str) -> ! {
135-
// Use Arguments::new_v1 instead of format_args!("{expr}") to potentially
135+
// Use Arguments::new_const instead of format_args!("{expr}") to potentially
136136
// reduce size overhead. The format_args! macro uses str's Display trait to
137137
// write expr, which calls Formatter::pad, which must accommodate string
138138
// truncation and padding (even though none is used here). Using
139-
// Arguments::new_v1 may allow the compiler to omit Formatter::pad from the
139+
// Arguments::new_const may allow the compiler to omit Formatter::pad from the
140140
// output binary, saving up to a few kilobytes.
141141
panic_fmt(fmt::Arguments::new_const(&[expr]));
142142
}

0 commit comments

Comments
 (0)