docs(man): Documentation of 'sn' and 'sb' conflicted with later docs

This commit is contained in:
Robert Minsk 2023-09-17 12:00:12 -07:00
parent a4e15135d2
commit 097d6276c2
2 changed files with 4 additions and 4 deletions

View file

@ -119,7 +119,7 @@ LIST OF CODES
: the extended attribute indicator
`sn`
: the numbers of a files size (sets `nb`, `nk`, `nm`, `ng` and `nh`)
: the numbers of a files size (sets `nb`, `nk`, `nm`, `ng` and `nt`)
`nb`
: the numbers of a files size if it is lower than 1 KB/Kib
@ -137,7 +137,7 @@ LIST OF CODES
: the numbers of a files size if it is 1 TB/TiB or higher
`sb`
: the units of a files size (sets `ub`, `uk`, `um`, `ug` and `uh`)
: the units of a files size (sets `ub`, `uk`, `um`, `ug` and `ut`)
`ub`
: the units of a files size if it is lower than 1 KB/Kib

View file

@ -194,12 +194,12 @@ impl UiStyles {
"nk" => self.size.number_kilo = pair.to_style(),
"nm" => self.size.number_mega = pair.to_style(),
"ng" => self.size.number_giga = pair.to_style(),
"nt" => self.size.number_huge = pair.to_style(),
"nh" => self.size.number_huge = pair.to_style(),
"ub" => self.size.unit_byte = pair.to_style(),
"uk" => self.size.unit_kilo = pair.to_style(),
"um" => self.size.unit_mega = pair.to_style(),
"ug" => self.size.unit_giga = pair.to_style(),
"ut" => self.size.unit_huge = pair.to_style(),
"uh" => self.size.unit_huge = pair.to_style(),
"df" => self.size.major = pair.to_style(),
"ds" => self.size.minor = pair.to_style(),