Fixed typos in django/db/models/query.py docstrings.

This commit is contained in:
Nick Pope 2015-09-07 20:25:24 +01:00 committed by Tim Graham
parent 862de0b254
commit 1743efbe62
1 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ class ValuesIterable(BaseIterable):
class ValuesListIterable(BaseIterable):
"""
Iterable returned by QuerySet.values_lists(flat=False)
Iterable returned by QuerySet.values_list(flat=False)
that yields a tuple for each row.
"""
@ -148,7 +148,7 @@ class ValuesListIterable(BaseIterable):
class FlatValuesListIterable(BaseIterable):
"""
Iterable returned by QuerySet.values_lists(flat=True) that
Iterable returned by QuerySet.values_list(flat=True) that
yields single values.
"""