From 6468a39e9259bada40135da8f9e8ff45cc9a0189 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 3 Jun 2025 13:43:40 -0400 Subject: [PATCH] comment typo --- Annex/CopyFile.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Annex/CopyFile.hs b/Annex/CopyFile.hs index 133ed4f8d7..83bc55e42a 100644 --- a/Annex/CopyFile.hs +++ b/Annex/CopyFile.hs @@ -30,7 +30,7 @@ newtype CopyCoWTried = CopyCoWTried (MVar Bool) newCopyCoWTried :: IO CopyCoWTried 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), - or it will fail to make a CoW copy, and will return false.