diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index ffada19..6cd7056 100644
|
a
|
b
|
It is an error to pass in ``flat`` when there is more than one field.
|
| 544 | 544 | If you don't pass any values to ``values_list()``, it will return all the |
| 545 | 545 | fields in the model, in the order they were declared. |
| 546 | 546 | |
| | 547 | Note that this method returns a ``ValuesListQuerySet`` which is an object that |
| | 548 | behaves like a list. Most of the time this is enough, but if you require an actual python |
| | 549 | list object, you can simply call ``list()`` on it (which will evaluate the queryset). |
| | 550 | |
| 547 | 551 | dates |
| 548 | 552 | ~~~~~ |
| 549 | 553 | |