From a21a79304077aa7a9105bf01d4be5c7a1a086319 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Thu, 27 Feb 2025 22:06:37 +0100 Subject: [PATCH] Fix Display documentation Fixes: #82 --- src/display.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/display.rs b/src/display.rs index e140db71..4ff8a103 100644 --- a/src/display.rs +++ b/src/display.rs @@ -84,7 +84,7 @@ impl Display { self } - /// Format using SI (decimal) units. + /// Format using a short style and IEC (binary) units. /// /// E.g., `4.2 MB`. /// @@ -96,7 +96,7 @@ impl Display { self } - /// Format using a short style and IEC (binary) units. + /// Format using SI (decimal) units. /// /// E.g., `4.2M`. #[must_use]