Update doc comments.

This commit is contained in:
Mara Bos 2022-09-06 23:15:44 +02:00
parent cf53fef0d6
commit ba7bf1d8ef

View File

@ -233,8 +233,8 @@ pub enum FormatAlignment {
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum FormatCount {
/// `{:0}` or `{:.0}`
/// `{:5}` or `{:.5}`
Literal(usize),
/// `{:.*}`, `{:.0$}`, or `{:a$}`, etc.
/// `{:.*}`, `{:.5$}`, or `{:a$}`, etc.
Argument(FormatArgPosition),
}