From 9c9b476b22dcfb733028be7c5f8549e09be994a4 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Mon, 13 May 2024 17:13:33 +0200 Subject: [PATCH] docs: fix --help formatting --- src/format.rs | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/format.rs b/src/format.rs index 1534b33..d4fdaec 100644 --- a/src/format.rs +++ b/src/format.rs @@ -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, }