comment typo

This commit is contained in:
Joey Hess 2025-06-03 13:43:40 -04:00
parent e5bcbe3f6b
commit 6468a39e92
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -30,7 +30,7 @@ newtype CopyCoWTried = CopyCoWTried (MVar Bool)
newCopyCoWTried :: IO CopyCoWTried newCopyCoWTried :: IO CopyCoWTried
newCopyCoWTried = CopyCoWTried <$> newEmptyMVar newCopyCoWTried = CopyCoWTried <$> newEmptyMVar
{- Copies a file is copy-on-write is supported. Otherwise, returns False. {- Copies a file if copy-on-write is supported. Otherwise, returns False.
- -
- The destination file must not exist yet (or may exist but be empty), - The destination file must not exist yet (or may exist but be empty),
- or it will fail to make a CoW copy, and will return false. - or it will fail to make a CoW copy, and will return false.