From a93305c096a67db8c1469040a5e96d87e426baf6 Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Wed, 10 Dec 2025 09:54:22 +0800 Subject: [PATCH] Fix typo, commmand -> command Found via `typos --hidden --format brief` --- src/Options/Generic.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Options/Generic.hs b/src/Options/Generic.hs index 1445f30..fcf91dc 100644 --- a/src/Options/Generic.hs +++ b/src/Options/Generic.hs @@ -1217,7 +1217,7 @@ getRecordWith infoMods prefsMods = liftIO (Options.customExecParser prefs info) prefs = Options.prefs (defaultParserPrefs <> prefsMods) info = Options.info parseRecord infoMods --- | Marshal any value that implements `ParseRecord` from the commmand line +-- | Marshal any value that implements `ParseRecord` from the command line -- alongside an io action that prints the help message. getWithHelp :: (MonadIO io, ParseRecord a) @@ -1227,7 +1227,7 @@ getWithHelp -- ^ (options, io action to print help message) getWithHelp desc = getWithHelpWith desc mempty --- | Marshal any value that implements `ParseRecord` from the commmand line +-- | Marshal any value that implements `ParseRecord` from the command line -- alongside an io action that prints the help message. getWithHelpWith :: (MonadIO io, ParseRecord a)