From b5db24f9ad9a0bd53409f28ac5492e8620e3bf6a Mon Sep 17 00:00:00 2001 From: Odin Dutton Date: Mon, 19 Aug 2019 10:55:28 +1000 Subject: [PATCH] Fix typo in date command signature --- src/commands/date.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/date.rs b/src/commands/date.rs index 444a04f4e..b979dfe3e 100644 --- a/src/commands/date.rs +++ b/src/commands/date.rs @@ -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") } }