We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf53fef commit ba7bf1dCopy full SHA for ba7bf1d
compiler/rustc_builtin_macros/src/format/ast.rs
@@ -233,8 +233,8 @@ pub enum FormatAlignment {
233
234
#[derive(Clone, Debug, PartialEq, Eq)]
235
pub enum FormatCount {
236
- /// `{:0}` or `{:.0}`
+ /// `{:5}` or `{:.5}`
237
Literal(usize),
238
- /// `{:.*}`, `{:.0$}`, or `{:a$}`, etc.
+ /// `{:.*}`, `{:.5$}`, or `{:a$}`, etc.
239
Argument(FormatArgPosition),
240
}
0 commit comments