summaryrefslogtreecommitdiff
path: root/python/indexrecords.cc
diff options
context:
space:
mode:
Diffstat (limited to 'python/indexrecords.cc')
-rw-r--r--python/indexrecords.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/indexrecords.cc b/python/indexrecords.cc
index c5ebcfbc..d6a3263c 100644
--- a/python/indexrecords.cc
+++ b/python/indexrecords.cc
@@ -46,9 +46,9 @@ static PyObject *indexrecords_load(PyObject *self,PyObject *args)
static char *indexrecords_lookup_doc =
"lookup(key: str) -> (HashString, int)\n\n"
- "Lookup the filename given by 'key', return a tuple (hash, size),\n"
- "whereas the first element 'hash' is an apt_pkg.HashString object\n"
- "and the second element 'size' an int object.";
+ "Look up the filename given by 'key' and return a tuple (hash, size),\n"
+ "where the first element 'hash' is an apt_pkg.HashString object\n"
+ "and the second element 'size' is an int object.";
static PyObject *indexrecords_lookup(PyObject *self,PyObject *args)
{
const char *keyname;