diff options
author | Joey Hess <joey@kitenet.net> | 2012-01-07 00:45:01 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-01-07 00:45:01 -0400 |
commit | bdc49ddbdb32146356fe2040d08071d7ce963466 (patch) | |
tree | eb7051e8acfeaf7ff83251eba7777fe29e396649 /Command | |
parent | dfa76069d45adff2c3edf79b184d6767b2bbe6bb (diff) |
typo
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Log.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Log.hs b/Command/Log.hs index 8505fd16a..9b0e38626 100644 --- a/Command/Log.hs +++ b/Command/Log.hs @@ -84,7 +84,7 @@ showLog file ps = do {- Generates a display of the changes (which are ordered with newest first), - by comparing each change with the previous change. - - Uses a formater to generate a display of items that are added and + - Uses a formatter to generate a display of items that are added and - removed. -} compareChanges :: Ord a => (Bool -> POSIXTime -> S.Set a -> b) -> [(POSIXTime, S.Set a)] -> [b] compareChanges format changes = concatMap diff $ zip changes (drop 1 changes) |