typo
This commit is contained in:
parent
10b7c405fa
commit
8a3ea4edcb
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ gitConfigParse s = Map.fromList $ map pair $ lines s
|
|||
{- Returns a single git config setting, or a default value if not set. -}
|
||||
gitConfig :: GitRepo -> String -> String -> String
|
||||
gitConfig repo key defaultValue =
|
||||
Map.findWithDefault key defaultValue (config repo)
|
||||
Map.findWithDefault defaultValue key (config repo)
|
||||
|
||||
{- Returns a list of a repo's configured remotes. -}
|
||||
gitConfigRemotes :: GitRepo -> IO [GitRepo]
|
||||
|
|
Loading…
Reference in a new issue