aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS.rst6
-rw-r--r--doc/dev-notes/hacking.rst2
-rwxr-xr-xexamples/identify-installed-non-split-debug-pkgs.py2
3 files changed, 5 insertions, 5 deletions
diff --git a/NEWS.rst b/NEWS.rst
index 40be9122e..fcfce7724 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -1271,7 +1271,7 @@ pkgcore 0.4.7.10 (2008-10-07)
to not tell the consumer to lovingly 'die in a fire'.
- correct a failure in EAPI=2 src_uri parsing complaining about
- missing checksums for nonexistant files
+ missing checksums for nonexistent files
pkgcore 0.4.7.9 (2008-10-06)
@@ -1384,7 +1384,7 @@ pkgcore 0.4.7.5 (2008-07-06)
- don't show flags from previous versions of packages in --pretend output -
it's confusing and doesn't match portage behaviour.
-- fix ticket 192: ignore non-existant files in config protect checking
+- fix ticket 192: ignore nonexistent files in config protect checking
pkgcore 0.4.7.4 (2008-06-11)
@@ -2427,7 +2427,7 @@ pkgcore 0.1.1 (2006-10-02)
- build fixes: make $A unique to avoid duplicate unpacks; force distdir
creation regardless of whether or not the pkg has any stated SRC_URI
(fixes cvs and subversion eclsas usage). Fix sandbox execution to chdir
- to an existant directory (sandbox will fail if ran from a nonexistant dir).
+ to an existent directory (sandbox will fail if ran from a nonexistent dir).
- change DelayedInstantiation objects to track __class__ themselves; this
fixes pquery to properly shutdown when ctrl+c'd (previously could swallow
diff --git a/doc/dev-notes/hacking.rst b/doc/dev-notes/hacking.rst
index 7f3ef55bd..ccd413c48 100644
--- a/doc/dev-notes/hacking.rst
+++ b/doc/dev-notes/hacking.rst
@@ -150,7 +150,7 @@ existing file (but empty to avoid reading overhead)::
python -m 'timeit' -s 'import os' $'try:open("dar").read()\nexcept IOError: pass'
10000 loops, best of 3: 22 usec per loop
-nonexistant file::
+nonexistent file::
rm foo
diff --git a/examples/identify-installed-non-split-debug-pkgs.py b/examples/identify-installed-non-split-debug-pkgs.py
index 7277d9828..84a13e0c9 100755
--- a/examples/identify-installed-non-split-debug-pkgs.py
+++ b/examples/identify-installed-non-split-debug-pkgs.py
@@ -17,7 +17,7 @@ for repo in vdbs:
for obj in files:
res = fi(obj.location)
if res is None:
- # nonexistant file.
+ # nonexistent file.
continue
if res.startswith("ELF "):
break