Merge pull request #308 from twe4ked/date-signature-typo

Fix typo in date command signature
This commit is contained in:
Jonathan Turner 2019-08-19 13:11:03 +12:00 committed by GitHub
commit e727f61d1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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