diff options
| author | lb1c <lb1c@users.noreply.github.com> | 2017-03-15 13:09:48 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-03-15 08:09:48 -0400 |
| commit | 36f2262741311159e5c13eb5114fb9e902e2df31 (patch) | |
| tree | aa0f00d736c8d8f57e63e524b6a864d7aeb4c778 /docs/ref/models | |
| parent | b625907a79bb1336cbc54231bdf7cace25fecaf7 (diff) | |
Fixed incorrect import in docs/ref/models/expressions.txt.
Diffstat (limited to 'docs/ref/models')
| -rw-r--r-- | docs/ref/models/expressions.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/models/expressions.txt b/docs/ref/models/expressions.txt index 6947b18554..a9231e8890 100644 --- a/docs/ref/models/expressions.txt +++ b/docs/ref/models/expressions.txt @@ -22,8 +22,8 @@ Some examples .. code-block:: python - from django.db.models import F, Count - from django.db.models.functions import Length, Upper, Value + from django.db.models import F, Count, Value + from django.db.models.functions import Length, Upper # Find companies that have more employees than chairs. Company.objects.filter(num_employees__gt=F('num_chairs')) |
