summaryrefslogtreecommitdiff
path: root/ceilometer/storage/hbase/utils.py
diff options
context:
space:
mode:
authorAbhishek Lekshmanan <abhishek.lekshmanan@gmail.com>2014-07-10 14:16:19 +0530
committerAbhishek Lekshmanan <abhishek.lekshmanan@gmail.com>2014-07-10 14:17:47 +0530
commit156d91d193d5efdbbc1c9f74b239ac0556c08a07 (patch)
tree38dcbb981752635e3709c06481481355981f54d5 /ceilometer/storage/hbase/utils.py
parenta4fd88c283d0d7fcb86ac7942e38418919702267 (diff)
downloadceilometer-156d91d193d5efdbbc1c9f74b239ac0556c08a07.tar.gz
Fix typos in code comments & docstrings
Conflicts: ceilometer/storage/mongo/utils.py Change-Id: Ia5937026018bb5441b7a5b6d82ce074889dfe78b
Diffstat (limited to 'ceilometer/storage/hbase/utils.py')
-rw-r--r--ceilometer/storage/hbase/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ceilometer/storage/hbase/utils.py b/ceilometer/storage/hbase/utils.py
index ba30b873..f8635870 100644
--- a/ceilometer/storage/hbase/utils.py
+++ b/ceilometer/storage/hbase/utils.py
@@ -102,7 +102,7 @@ def make_timestamp_query(func, start=None, start_op=None, end=None,
return start_row, end_row
q = []
- # We dont need to dump here because get_start_end_rts returns strings
+ # We don't need to dump here because get_start_end_rts returns strings
if rts_start:
q.append("SingleColumnValueFilter ('f', 'rts', <=, 'binary:%s')" %
rts_start)
@@ -143,7 +143,7 @@ def make_query(metaquery=None, trait_query=None, **kwargs):
res_q = None
# Query for traits differs from others. It is constructed with
- # SingleColumnValueFilter with the possibility to choose comparision
+ # SingleColumnValueFilter with the possibility to choose comparison
# operator
if trait_query:
trait_name = kwargs.pop('key')