File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ pub struct Display {
76
76
impl Display {
77
77
/// Format using IEC (binary) units.
78
78
///
79
- /// E.g., `4.2 MiB`.
79
+ /// E.g., `11.8 MiB`.
80
80
#[ must_use]
81
81
#[ doc( alias = "binary" ) ]
82
82
pub fn iec ( mut self ) -> Self {
@@ -86,7 +86,7 @@ impl Display {
86
86
87
87
/// Format using a short style and IEC (binary) units.
88
88
///
89
- /// E.g., `4.2 MB `.
89
+ /// E.g., `11.8M `.
90
90
///
91
91
/// Designed to produce output compatible with `sort -h`.
92
92
#[ must_use]
@@ -98,7 +98,7 @@ impl Display {
98
98
99
99
/// Format using SI (decimal) units.
100
100
///
101
- /// E.g., `4.2M `.
101
+ /// E.g., `12.3 MB `.
102
102
#[ must_use]
103
103
#[ doc( alias = "decimal" ) ]
104
104
pub fn si ( mut self ) -> Self {
@@ -108,7 +108,7 @@ impl Display {
108
108
109
109
/// Format using a short style and SI (decimal) units.
110
110
///
111
- /// E.g., `4.2M `.
111
+ /// E.g., `12.3M `.
112
112
#[ must_use]
113
113
#[ doc( alias = "decimal" ) ]
114
114
pub fn si_short ( mut self ) -> Self {
You can’t perform that action at this time.
0 commit comments