docs: fix --help formatting
cargo devel CI / cargo CI (push) Has been cancelled Details

This commit is contained in:
Christoph J. Scherr 2024-05-13 17:13:33 +02:00
parent 83250589fb
commit 9c9b476b22
1 changed files with 10 additions and 6 deletions

View File

@ -76,13 +76,17 @@ pub struct FormatOptions {
///
/// Formats:
///
/// - '0x' - Hexadecimal
/// - '0b' - Binary
/// - '0o' - Octal
/// - '0s' - Base64
/// - '032s' - Base32
/// * '0x' - Hexadecimal
///
/// The numbers may be left empty at first, if numbers are provided with the stdin.
/// * '0b' - Binary
///
/// * '0o' - Octal
///
/// * '0s' - Base64
///
/// * '032s' - Base32
///
/// The numbers may be left empty at first, if numbers are provided from the stdin.
numbers: Vec<NumberType>,
}