diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-03-23 05:26:45 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-03-23 05:26:45 +0000 |
commit | 1dd427fcc0ec6cca8ba5dd308ad59ec5195f8a44 (patch) | |
tree | 5f846af359c481bdb2c06ffabbd74b96f962e340 | |
parent | 73bcc795fbdf4da476ca5acbdff679393a5f0e5f (diff) | |
download | portage-1dd427fcc0ec6cca8ba5dd308ad59ec5195f8a44.tar.gz portage-1dd427fcc0ec6cca8ba5dd308ad59ec5195f8a44.tar.bz2 portage-1dd427fcc0ec6cca8ba5dd308ad59ec5195f8a44.zip |
Fix misc typos in comments.
svn path=/main/trunk/; revision=13168
-rw-r--r-- | pym/portage/__init__.py | 2 | ||||
-rw-r--r-- | pym/portage/cache/sqlite.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index e24d4ca96..21f671b43 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -5527,7 +5527,7 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0, for example. @type fd_pipes: Dictionary @param returnpid: Return a list of process IDs for a successful spawn, or - in integer value if spawn is unsuccessful. NOTE: This requires the + an integer value if spawn is unsuccessful. NOTE: This requires the caller clean up all returned PIDs. @type returnpid: Boolean @rtype: Boolean diff --git a/pym/portage/cache/sqlite.py b/pym/portage/cache/sqlite.py index 6588b3cc7..8d94d6a7c 100644 --- a/pym/portage/cache/sqlite.py +++ b/pym/portage/cache/sqlite.py @@ -165,7 +165,7 @@ class database(fs_template.FsBased): d[k] = result[0][column_index] # As a temporary workaround for bug #263081, convert unicode strings - # to raw byte strings. This helps to potential unicode errors that can + # to raw byte strings. This avoids potential unicode errors that can # be triggered elsewhere when attempting to join unicode strings with # raw byte strings. TODO: Convert all string handling code to use # unicode strings instead of raw byte strings (required for py3k |