mirror of
https://github.com/nushell/nushell
synced 2025-01-12 05:09:04 +00:00
rename date type to datetime
This commit is contained in:
parent
762fdb98ac
commit
08d156d02d
1 changed files with 2 additions and 2 deletions
|
@ -122,7 +122,7 @@ impl Type {
|
|||
Type::Closure => String::from("closure"),
|
||||
Type::Bool => String::from("bool"),
|
||||
Type::CellPath => String::from("cell-path"),
|
||||
Type::Date => String::from("date"),
|
||||
Type::Date => String::from("datetime"),
|
||||
Type::Duration => String::from("duration"),
|
||||
Type::Filesize => String::from("filesize"),
|
||||
Type::Float => String::from("float"),
|
||||
|
@ -152,7 +152,7 @@ impl Display for Type {
|
|||
Type::Closure => write!(f, "closure"),
|
||||
Type::Bool => write!(f, "bool"),
|
||||
Type::CellPath => write!(f, "cell-path"),
|
||||
Type::Date => write!(f, "date"),
|
||||
Type::Date => write!(f, "datetime"),
|
||||
Type::Duration => write!(f, "duration"),
|
||||
Type::Filesize => write!(f, "filesize"),
|
||||
Type::Float => write!(f, "float"),
|
||||
|
|
Loading…
Reference in a new issue