A few more of typo fixes/skip as detected with bleeding edge codespell

This commit is contained in:
Yaroslav Halchenko 2024-05-01 16:00:35 -04:00 committed by Joey Hess
parent 9dea552f9b
commit 6674c3b055
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
[codespell]
skip = .git,*.pdf,*.svg,*._comment,jquery.*.js,*.mdwn,changelog,CHANGELOG,list.2018,html,dist,dist-newstyle,.stack-work,man,tags,tmp
ignore-regex=\bvalUs\b
ignore-regex=\b(valUs|addIn)\b
# some common variables etc (case insensitive)
# keypair - constructs
## May be TODO later, touches too much

View file

@ -1,4 +1,4 @@
{- git-annex assistant sceduled jobs runner
{- git-annex assistant scheduled jobs runner
-
- Copyright 2013 Joey Hess <id@joeyh.name>
-

View file

@ -125,7 +125,7 @@ knownMissing :: FsckResults -> MissingObjects
knownMissing FsckFailed = S.empty
knownMissing (FsckFoundMissing s _) = s
{- Finds objects that are missing from the git repsitory, or are corrupt.
{- Finds objects that are missing from the git repository, or are corrupt.
-
- This does not use git cat-file --batch, because catting a corrupt
- object can cause it to crash, or to report incorrect size information.