Rollup merge of #149349 - m-ou-se:fmt-arg-comment-typo, r=Mark-Simulacrum

Fix typo in comment.
This commit is contained in:
Stuart Cook
2025-11-27 15:47:10 +11:00
committed by GitHub
+1 -1
View File
@@ -625,7 +625,7 @@ pub const fn with_options<'b>(&'b mut self, options: FormattingOptions) -> Forma
//
// 2) Placeholders representation (e.g. format_args!("hello {name}\n"))
// ┌────────────────────────────────┐
// template: │ *const u8 │ ─▷ b"\x06hello \x80\x01\n\x00"
// template: │ *const u8 │ ─▷ b"\x06hello \xC0\x01\n\x00"
// ├────────────────────────────────┤
// args: │ &'a [Argument<'a>; _] 0│ (lower bit is 0 due to alignment of Argument type)
// └────────────────────────────────┘