diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-02-01 11:29:47 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-02-02 10:06:39 +0100 |
commit | 8dd82ead7ddd65348bcbea4e2bb8defce4253173 (patch) | |
tree | 22887ccbb12f2801b467ea0e05261ff6c036b9e9 /utils/testremove | |
parent | eedb3df0c1c28a7abc43705d614239c1c6199a1f (diff) | |
download | haskell-8dd82ead7ddd65348bcbea4e2bb8defce4253173.tar.gz |
Spelling fixes
Diffstat (limited to 'utils/testremove')
-rw-r--r-- | utils/testremove/checkremove.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/testremove/checkremove.hs b/utils/testremove/checkremove.hs index e22c004794..5d77aee1b4 100644 --- a/utils/testremove/checkremove.hs +++ b/utils/testremove/checkremove.hs @@ -64,8 +64,8 @@ mapFromList' xs = seqAll xs `seq` Map.fromList xs seqAll ((x, y) : xys) = x `seq` y `seq` seqAll xys {- -... = OK: will happen if a file in a non-existant directory is rm'd [1] -..D = OK: will happen if a non-existant file is rm'd [1] +... = OK: will happen if a file in a non-existent directory is rm'd [1] +..D = OK: will happen if a non-existent file is rm'd [1] .A. = suspicious: Why wasn't this file cleaned? .AD = OK: This is what object files look like B.. = suspicious: Where did the file go? |