From b509326d3699d6d13f64fff442aacad207acba8c Mon Sep 17 00:00:00 2001 From: Danila Danko Date: Tue, 20 Feb 2024 20:25:19 +0300 Subject: [PATCH] fix: typo in flag description --- eo-phi-normalizer/app/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo-phi-normalizer/app/Main.hs b/eo-phi-normalizer/app/Main.hs index a175409b1..154fb0dc5 100644 --- a/eo-phi-normalizer/app/Main.hs +++ b/eo-phi-normalizer/app/Main.hs @@ -32,7 +32,7 @@ instance ParseFields CLINamedParams where <$> parseFields (Just "Print out steps of reduction") (Just "chain") (Just 'c') Nothing <*> parseFields (Just "Path to the Yaml file with custom rules") (Just "rules-yaml") Nothing Nothing <*> parseFields (Just "Output file path (defaults to stdout)") (Just "output") (Just 'o') Nothing - <*> parseFields (Just "Print a single normlized expression") (Just "single") (Just 's') Nothing + <*> parseFields (Just "Print a single normalized expression") (Just "single") (Just 's') Nothing data CLIOptions = CLIOptions CLINamedParams (Maybe FilePath) deriving (Generic, Show, ParseRecord)