From 35a512680c40205e8357e7bd347cec2c3a2abffc Mon Sep 17 00:00:00 2001 From: uniqueNullptr2 Date: Wed, 20 Jul 2022 09:13:31 +0200 Subject: [PATCH] fix mistype of syntax highlight option --- src/args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/args.rs b/src/args.rs index a0f2e6d..577fa0f 100644 --- a/src/args.rs +++ b/src/args.rs @@ -33,7 +33,7 @@ pub struct Args { #[clap(long, env="MICROBIN_NO_LISTING")] pub no_listing: bool, - #[clap(long, env="MICROBIN_HIGHLIGHTINGSYNTAX")] + #[clap(long, env="MICROBIN_HIGHLIGHTSYNTAX")] pub highlightsyntax: bool, #[clap(short, long, env="MICROBIN_PORT", default_value_t = 8080)]