From a07f61002c729da80de0f99cd4802b0419f17248 Mon Sep 17 00:00:00 2001 From: Jake Date: Tue, 24 Sep 2024 13:58:19 -0700 Subject: [PATCH] Add name and desc --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 23b7ce3..b5f67a3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -11,7 +11,7 @@ pub mod lexer; pub mod parse; #[derive(Debug, StructOpt)] -#[structopt(name = "example", about = "An example of StructOpt usage.")] +#[structopt(name = "Component", about = "A programming language for math using postfix notation")] struct Opt { #[structopt(short, long)] verbose: bool,