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-12 01:19:45 -0500
commit46ddb1ad1e7a992b6ceae0c96cd432e3b9bbb7f8 (patch)
tree19cd4dba88248b4b121584ce34c8a3ddcb713dd7
parent50a0e26938f55a20a25a59a575da3a767ad7511b (diff)
fix documentation typoswip-2022-02-12
-rw-r--r--README.rst6
-rw-r--r--parabola_repolint/linter_checks/repo_integrity.py6
2 files changed, 6 insertions, 6 deletions
diff --git a/README.rst b/README.rst
index 919296b..b524778 100644
--- a/README.rst
+++ b/README.rst
@@ -140,9 +140,9 @@ 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.
+satisfied by a valid built package.
pkgfile_missing_pkgbuild
~~~~~~~~~~~~~~~~~~~~~~~~
@@ -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..350705d 100644
--- a/parabola_repolint/linter_checks/repo_integrity.py
+++ b/parabola_repolint/linter_checks/repo_integrity.py
@@ -124,9 +124,9 @@ 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.
+ satisfied by a valid built package.
'''
name = 'pkgentry_missing_pkgfile'
@@ -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.
'''