summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2022-02-10 22:19:07 -0500
committerbill-auger <mr.j.spam.me@gmail.com>2022-02-10 22:31:57 -0500
commit995a61b94f9dfc614e7ae166b93a9689befb35fb (patch)
treecdffaeec3b83df05f83493884f77b1d982d799a0
parent4c9d53d7e493d21af2abe216cc9d41f83cf427a3 (diff)
fix documentation typoswip-2022-02-10
-rw-r--r--README.rst4
-rw-r--r--parabola_repolint/linter_checks/repo_integrity.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/README.rst b/README.rst
index 919296b..5fa73b3 100644
--- a/README.rst
+++ b/README.rst
@@ -140,7 +140,7 @@ repo.db entry that has more than one producing PKGBUILD.
pkgentry_missing_pkgfile
~~~~~~~~~~~~~~~~~~~~~~~~
-for the list of entries in a repo.db, check wether a built package exists that
+for the list of entries in a repo.db, check whether a built package exists that
backs the entry. The check reports an issue for each repo.db entry that is not
associatable with a valid built package.
@@ -161,7 +161,7 @@ package that has more than one producing PKGBUILD.
pkgfile_missing_pkgentry
~~~~~~~~~~~~~~~~~~~~~~~~
-for the list of built packages, check wether a repo.db entry exists that refers
+for the list of built packages, check whether a repo.db entry exists that refers
to the package. The check reports an issue for each built package that is not
referred to by a repo.db entry.
diff --git a/parabola_repolint/linter_checks/repo_integrity.py b/parabola_repolint/linter_checks/repo_integrity.py
index 5ba4ac6..3eb615e 100644
--- a/parabola_repolint/linter_checks/repo_integrity.py
+++ b/parabola_repolint/linter_checks/repo_integrity.py
@@ -124,7 +124,7 @@ class PkgEntryDuplicatePkgbuilds(LinterCheckBase):
class PkgEntryMissingPkgFile(LinterCheckBase):
'''
- for the list of entries in a repo.db, check wether a built package exists that
+ for the list of entries in a repo.db, check whether a built package exists that
backs the entry. The check reports an issue for each repo.db entry that is not
associatable with a valid built package.
'''
@@ -185,7 +185,7 @@ class PkgFileDuplicatePkgbuilds(LinterCheckBase):
class PkgFileMissingPkgEntry(LinterCheckBase):
'''
- for the list of built packages, check wether a repo.db entry exists that refers
+ for the list of built packages, check whether a repo.db entry exists that refers
to the package. The check reports an issue for each built package that is not
referred to by a repo.db entry.
'''