mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 02:13:47 +01:00
K raw unit is a kilobyte.
This commit is contained in:
parent
59115a532f
commit
520ab55756
@ -217,6 +217,8 @@ pub fn raw_unit(input: NomSpan) -> IResult<NomSpan, Spanned<Unit>> {
|
||||
tag("KB"),
|
||||
tag("kb"),
|
||||
tag("Kb"),
|
||||
tag("K"),
|
||||
tag("k"),
|
||||
tag("MB"),
|
||||
tag("mb"),
|
||||
tag("Mb"),
|
||||
|
@ -46,8 +46,8 @@ impl FromStr for Unit {
|
||||
type Err = ();
|
||||
fn from_str(input: &str) -> Result<Self, <Self as std::str::FromStr>::Err> {
|
||||
match input {
|
||||
"B" | "b" => Ok(Unit::B),
|
||||
"KB" | "kb" | "Kb" => Ok(Unit::KB),
|
||||
"B" | "b" => Ok(Unit::B),
|
||||
"KB" | "kb" | "Kb" | "K" | "k" => Ok(Unit::KB),
|
||||
"MB" | "mb" | "Mb" => Ok(Unit::MB),
|
||||
"GB" | "gb" | "Gb" => Ok(Unit::GB),
|
||||
"TB" | "tb" | "Tb" => Ok(Unit::TB),
|
||||
|
Loading…
Reference in New Issue
Block a user