summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/cdrom.cc2
-rw-r--r--python/pkgmanager.cc12
2 files changed, 7 insertions, 7 deletions
diff --git a/python/cdrom.cc b/python/cdrom.cc
index 7f89e9d3..6ac16d59 100644
--- a/python/cdrom.cc
+++ b/python/cdrom.cc
@@ -52,7 +52,7 @@ static PyObject *cdrom_add(PyObject *Self,PyObject *Args)
static char *cdrom_ident_doc =
"ident(progress: apt_pkg.CdromProgress) -> str\n\n"
"Try to identify the CD-ROM and if successful return the hexadecimal\n"
- "CDROM-ID (and a integer version suffix seperated by -) as a\n"
+ "CDROM-ID (and a integer version suffix separated by -) as a\n"
"string. Otherwise, return None or raise an error.\n\n"
"The ID is created by hashing all file and directory names on the\n"
"CD-ROM and appending the version.";
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 =
{