gdritter repos config-ini / 19da749
Avoid fmap operator for 7.8 compat Getty Ritter 7 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Collapse all Expand all
2525 port <- fieldOf "port" number
2626 return NetworkConfig { netHost = host, netPort = port }
2727 locCf <- sectionMb "LOCAL" $
28 LocalConfig <$> field "user"
28 LocalConfig `fmap` field "user"
2929 return Config { cfNetwork = netCf, cfLocal = locCf }
3030
3131 main :: IO ()