Fix typo in date command signature

This commit is contained in:
Odin Dutton 2019-08-19 10:55:28 +10:00
parent 81d83d7655
commit b5db24f9ad

View File

@ -24,7 +24,7 @@ impl WholeStreamCommand for Date {
} }
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("mkdir").switch("utc").switch("local") Signature::build("date").switch("utc").switch("local")
} }
} }