diff options
Diffstat (limited to 'Command/Log.hs')
-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) |