diff options
Diffstat (limited to 'Propellor/Property/File.hs')
| -rw-r--r-- | Propellor/Property/File.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Propellor/Property/File.hs b/Propellor/Property/File.hs index 4312b89d..af4f554f 100644 --- a/Propellor/Property/File.hs +++ b/Propellor/Property/File.hs @@ -19,7 +19,7 @@ f `containsLine` l = fileProperty (f ++ " contains:" ++ l) go f -- | Ensures that a line is not present in a file. -- Note that the file is ensured to exist, so if it doesn't, an empty --- file will be written. -} +-- file will be written. lacksLine :: FilePath -> Line -> Property f `lacksLine` l = fileProperty (f ++ " remove: " ++ l) (filter (/= l)) f |
