summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWouter Bolsterlee <uws@xs4all.nl>2013-11-03 16:53:58 +0100
committerWouter Bolsterlee <uws@xs4all.nl>2013-11-03 16:53:58 +0100
commitd7fc7502d0ecd57a263440a5d377bdc7b4bf4446 (patch)
tree2de58e2327ed94ec9da37ca94e674f835cff13d5
parentdd7878cfc1fd2c40cb30e33c9022209b996da109 (diff)
downloadhappybase-d7fc7502d0ecd57a263440a5d377bdc7b4bf4446.tar.gz
Tiny code comment improvement
-rw-r--r--happybase/batch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/happybase/batch.py b/happybase/batch.py
index 802ab56..5af6696 100644
--- a/happybase/batch.py
+++ b/happybase/batch.py
@@ -84,8 +84,8 @@ class Batch(object):
"""
# Work-around Thrift API limitation: the mutation API can only
# delete specified columns, not complete rows, so just list the
- # column families once and cache them for later use in the same
- # transaction.
+ # column families once and cache them for later use by the same
+ # batch instance.
if columns is None:
if self._families is None:
self._families = self._table._column_family_names()