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

4
Git.hs
View file

@ -1,6 +1,6 @@
{- git repository handling
-
- This is written to be completely independant of git-annex and should be
- This is written to be completely independent of git-annex and should be
- suitable for other uses.
-
- Copyright 2010-2021 Joey Hess <id@joeyh.name>
@ -79,7 +79,7 @@ repoPath Repo { location = Local { worktree = Just d } } = d
repoPath Repo { location = Local { gitdir = d } } = d
repoPath Repo { location = LocalUnknown dir } = dir
repoPath Repo { location = Unknown } = error "unknown repoPath"
repoPath Repo { location = UnparseableUrl _u } = error "unknwon repoPath"
repoPath Repo { location = UnparseableUrl _u } = error "unknown repoPath"
repoWorkTree :: Repo -> Maybe RawFilePath
repoWorkTree Repo { location = Local { worktree = Just d } } = Just d