From 5bd2e3df527775a5750a11338857fef4162068a6 Mon Sep 17 00:00:00 2001 From: lexual Date: Fri, 8 Nov 2013 19:03:53 +1100 Subject: [PATCH] fix misspelling. hundres -> hundreds. --- tablib/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tablib/core.py b/tablib/core.py index cb192ae..b174582 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -133,8 +133,8 @@ class Dataset(object): data.append_col((90, 67), header='age') - You can also set rows and headers upon instantiation. This is useful if dealing - with dozens or hundres of :class:`Dataset` objects. :: + You can also set rows and headers upon instantiation. This is useful if + dealing with dozens or hundreds of :class:`Dataset` objects. :: headers = ('first_name', 'last_name') data = [('John', 'Adams'), ('George', 'Washington')]