summaryrefslogtreecommitdiff
path: root/table.py
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2009-11-23 14:44:56 +0100
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2009-11-23 14:44:56 +0100
commitb7e84e3fc5418641041f95a80f08fe053c004c27 (patch)
treea0e0865c87e8bd127df674b53b30f3e323c1b255 /table.py
parentb80f0a3c1f04c4446ab3f7ec019a3888fa098fab (diff)
downloadlogilab-common-b7e84e3fc5418641041f95a80f08fe053c004c27.tar.gz
include Dotan Barak spell fixes patch
Diffstat (limited to 'table.py')
-rw-r--r--table.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/table.py b/table.py
index 865087f..9b5b310 100644
--- a/table.py
+++ b/table.py
@@ -105,7 +105,7 @@ class Table(object):
def groupby(self, colname, *others):
"""builds indexes of data
- :returns: nested dictionnaries pointing to actual rows
+ :returns: nested dictionaries pointing to actual rows
"""
groups = {}
colnames = (colname,) + others
@@ -418,7 +418,7 @@ class Table(object):
"""returns a string representing the table in a pretty
printed 'text' format.
"""
- # The maxium row name (to know the start_index of the first col)
+ # The maximum row name (to know the start_index of the first col)
max_row_name = 0
for row_name in self.row_names:
if len(row_name) > max_row_name: