Apply codespell -w throughout

This commit is contained in:
Yaroslav Halchenko 2023-03-13 22:39:16 -04:00 committed by Joey Hess
parent 100f5aabb6
commit 84b0a3707a
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
108 changed files with 135 additions and 135 deletions

View file

@ -536,7 +536,7 @@ receiveMessageAddonProcess p = do
shutdownAddonProcess :: AddonProcess.ExternalAddonProcess -> Bool -> IO ()
shutdownAddonProcess = AddonProcess.externalShutdown
{- A response handler can yeild a result, or it can request that another
{- A response handler can yield a result, or it can request that another
- message be consumed from the external. -}
data ResponseHandlerResult a
= Result a
@ -548,7 +548,7 @@ result :: a -> Maybe (Annex (ResponseHandlerResult a))
result = Just . return . Result
{- Waits for a message from the external remote, and passes it to the
- apppropriate handler.
- appropriate handler.
-
- If the handler returns Nothing, this is a protocol error.-}
receiveMessage