diff options
| author | Kenneth Reitz <me@kennethreitz.org> | 2014-01-08 11:41:05 -0800 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.org> | 2014-01-08 11:41:05 -0800 |
| commit | 65ba937c0dd3ef9eacbac03359eb1e698f742fb7 (patch) | |
| tree | fa6852b14f9f4af4a994ab3cd357e0ea00724fc7 /tablib | |
| parent | 79a2bb888fb8d8d3fcbcb0f0dac4261f2b576b5f (diff) | |
| parent | 5bd2e3df527775a5750a11338857fef4162068a6 (diff) | |
| download | tablib-65ba937c0dd3ef9eacbac03359eb1e698f742fb7.tar.gz | |
Merge pull request #129 from lexual/dataset_typo_fix
fix misspelling. hundres -> hundreds.
Diffstat (limited to 'tablib')
| -rw-r--r-- | tablib/core.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tablib/core.py b/tablib/core.py index f386136..f4474d3 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')] |
