Skip to content

Commit

Permalink
Fixed a few typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfriedly committed Aug 26, 2011
1 parent ec7273d commit 05c9b33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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']

Expand Down Expand Up @@ -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. ::
Expand All @@ -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
Expand Down

0 comments on commit 05c9b33

Please sign in to comment.