summaryrefslogtreecommitdiff
path: root/apt/cache.py
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2011-10-19 18:24:24 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2011-10-19 18:24:24 +0200
commite99da71e5f242787ec39714e55b5fa08bfe071eb (patch)
treecc2f2640f3b7e50a74b7999d1c6c09d8ff62d60b /apt/cache.py
parent4afbecfe93e5666bd4970948c66b09dbca762d4b (diff)
downloadpython-apt-e99da71e5f242787ec39714e55b5fa08bfe071eb.tar.gz
rm usage of camelcase in cache.py doc (closes: #626617)
Diffstat (limited to 'apt/cache.py')
-rw-r--r--apt/cache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt/cache.py b/apt/cache.py
index be137b76..49097dd2 100644
--- a/apt/cache.py
+++ b/apt/cache.py
@@ -507,7 +507,7 @@ class Cache(object):
self._callbacks[name].append(callback)
def actiongroup(self):
- """Return an ActionGroup() object for the current cache.
+ """Return an action group object for the current cache.
Action groups can be used to speedup actions. The action group is
active as soon as it is created, and disabled when the object is
@@ -520,7 +520,7 @@ class Cache(object):
for package in my_selected_packages:
package.mark_install()
- This way, the ActionGroup is automatically released as soon as the
+ This way, the action group is automatically released as soon as the
with statement block is left. It also has the benefit of making it
clear which parts of the code run with a action group and which
don't.