diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index ffada19..f7b39f6 100644
a
|
b
|
values_list
|
521 | 521 | |
522 | 522 | .. method:: values_list(*fields) |
523 | 523 | |
524 | | This is similar to ``values()`` except that instead of returning dictionaries, |
525 | | it returns tuples when iterated over. Each tuple contains the value from the |
526 | | respective field passed into the ``values_list()`` call — so the first item is |
527 | | the first field, etc. For example:: |
| 524 | Returns a ``ValuesListQuerySet``. It is similar to ``values()`` except that |
| 525 | instead of returning dictionaries, it returns tuples when iterated over. |
| 526 | Each tuple contains the value from the respective field passed into the |
| 527 | ``values_list()`` call — so the first item is the first field, etc. |
| 528 | For example:: |
528 | 529 | |
529 | 530 | >>> Entry.objects.values_list('id', 'headline') |
530 | 531 | [(1, u'First entry'), ...] |