summaryrefslogtreecommitdiff
path: root/python/pkgmanager.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2011-05-27 16:06:22 +0200
committerJulian Andres Klode <jak@debian.org>2011-05-27 16:06:22 +0200
commitab08c42c90e9aab009b6d5f1b4bdce0c68300fa5 (patch)
treef814d7db7455592dc1135a4681c21605dd5c3db8 /python/pkgmanager.cc
parent1a1d96e49901a834d6208d3561877d8f16d5b758 (diff)
downloadpython-apt-ab08c42c90e9aab009b6d5f1b4bdce0c68300fa5.tar.gz
Fix spelling errors reported by Lintian (sep[a->e]rated, overrid[d]en)
Diffstat (limited to 'python/pkgmanager.cc')
-rw-r--r--python/pkgmanager.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/python/pkgmanager.cc b/python/pkgmanager.cc
index b7bed658..f51dbbbc 100644
--- a/python/pkgmanager.cc
+++ b/python/pkgmanager.cc
@@ -295,24 +295,24 @@ static PyMethodDef PkgManager2Methods[] =
{
{"install",PkgManagerInstall,METH_VARARGS,
"install(pkg: Package, filename: str) -> bool \n\n"
- "Add a install action. Can be overriden in subclasses.\n\n"
+ "Add a install action. Can be overridden in subclasses.\n\n"
"New in version 0.8.0."},
{"configure",PkgManagerConfigure,METH_VARARGS,
"configure(pkg: Package) -> bool \n\n"
- "Add a configure action. Can be overriden in subclasses.\n\n"
+ "Add a configure action. Can be overridden in subclasses.\n\n"
"New in version 0.8.0."},
{"remove",PkgManagerRemove,METH_VARARGS,
"remove(pkg: Package, purge: bool) -> bool \n\n"
- "Add a removal action. Can be overriden in subclasses.\n\n"
+ "Add a removal action. Can be overridden in subclasses.\n\n"
"New in version 0.8.0."},
{"go",PkgManagerGo,METH_VARARGS,
"go(status_fd: int) -> bool \n\n"
- "Start dpkg. Can be overriden in subclasses.\n\n"
+ "Start dpkg. Can be overridden in subclasses.\n\n"
"New in version 0.8.0."},
{"reset",PkgManagerReset,METH_VARARGS,
"reset()\n\n"
"Reset the package manager for a new round.\n"
- "Can be overriden in subclasses.\n\n"
+ "Can be overridden in subclasses.\n\n"
"New in version 0.8.0."},
{}
};
@@ -323,7 +323,7 @@ static const char *packagemanager2_doc =
"installation and the installation of those packages. The parameter\n"
"'depcache' specifies an apt_pkg.DepCache object where information\n"
"about the package selections is retrieved from.\n\n"
- "Methods in this class can be overriden in sub classes\n"
+ "Methods in this class can be overridden in sub classes\n"
"to implement behavior different from APT's dpkg implementation.";
PyTypeObject PyPackageManager2_Type =
{