Skip to content

Commit

Permalink
fixup! [#170] Reorganize top-level config keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Sereja313 committed Oct 5, 2022
1 parent 108f9d3 commit cb4e935
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Xrefcheck/CLI.hs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ data Options = Options
}

data ExclusionOptions = ExclusionOptions
{ toIgnored :: [RelGlobPattern]
{ eoIgnored :: [RelGlobPattern]
}

addExclusionOptions :: ExclusionConfig -> ExclusionOptions -> ExclusionConfig
Expand Down Expand Up @@ -177,7 +177,7 @@ optionsParser = do

exclusionOptionsParser :: Parser ExclusionOptions
exclusionOptionsParser = do
toIgnored <- many . globOption $
eoIgnored <- many . globOption $
long "ignored" <>
metavar "GLOB PATTERN" <>
help "Files which we pretend do not exist.\
Expand Down

0 comments on commit cb4e935

Please sign in to comment.