From b5803a7b9acfe345613db97632221869ce982f48 Mon Sep 17 00:00:00 2001 From: Sergey Isaev Date: Fri, 7 Aug 2020 12:39:17 +0300 Subject: [PATCH] Sort alphabetically --- leo/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leo/cli.rs b/leo/cli.rs index ac49bfbf75..0966689948 100644 --- a/leo/cli.rs +++ b/leo/cli.rs @@ -6,10 +6,10 @@ pub trait CLI { type Options; type Output; - const NAME: NameType; const ABOUT: AboutType; const ARGUMENTS: &'static [ArgumentType]; const FLAGS: &'static [FlagType]; + const NAME: NameType; const OPTIONS: &'static [OptionType]; const SUBCOMMANDS: &'static [SubCommandType];