diff options
| author | Kenneth Reitz <me@kennethreitz.com> | 2011-08-30 22:15:49 -0700 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.com> | 2011-08-30 22:15:49 -0700 |
| commit | 81a7f79b3dd7bff61935c20952c9c8d4d0d55947 (patch) | |
| tree | 05f56ac22a7579db0352f405aeb05b75ad9c7d56 | |
| parent | ec7273d02ddfc68f0a48be6018482bd26ca88b11 (diff) | |
| parent | 05c9b330034597a6097fb175460dbf0e0f34323a (diff) | |
| download | tablib-81a7f79b3dd7bff61935c20952c9c8d4d0d55947.tar.gz | |
Merge pull request #37 from jfriedly/patch-1
Fixed a few typos.
| -rw-r--r-- | docs/tutorial.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 117196d..bd2dbc0 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -68,7 +68,7 @@ Adding Headers -------------- -It's time enhance our :class:`Dataset` by giving our columns some titles. To do so, set :class:`Dataset.headers`. :: +It's time to enhance our :class:`Dataset` by giving our columns some titles. To do so, set :class:`Dataset.headers`. :: data.headers = ['First Name', 'Last Name'] @@ -251,7 +251,7 @@ Filtering Datasets with Tags When constructing a :class:`Dataset` object, you can add tags to rows by specifying the ``tags`` parameter. -This allows you to filter your :class:`Dataset` later. This can be useful so separate rows of data based on +This allows you to filter your :class:`Dataset` later. This can be useful to separate rows of data based on arbitrary criteria (*e.g.* origin) that you don't want to include in your :class:`Dataset`. Let's tag some students. :: @@ -263,7 +263,7 @@ Let's tag some students. :: students.rpush(['Kenneth', 'Reitz'], tags=['male', 'technical']) students.rpush(['Bessie', 'Monke'], tags=['female', 'creative']) -Now that we have extra meta-data on our rows, we can use easily filter our :class:`Dataset`. Let's just see Male students. :: +Now that we have extra meta-data on our rows, we can easily filter our :class:`Dataset`. Let's just see Male students. :: >>> students.filter(['male']).yaml |
