Fixed #27209 -- Fixed typo in docs/ref/models/database-functions.txt.

Thanks Valentin Ignatyev for the report.
This commit is contained in:
Simon Charette 2016-09-12 08:07:30 -04:00 committed by Tim Graham
parent a1ad896422
commit 767ba00976
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ Usage example::
>>> from django.db.models import FloatField
>>> from django.db.models.functions import Cast
>>> Value.objects.create(integer=4)
>>> value = Value.objects.annotate(as_float=Cast('integer', FloatField)).get()
>>> value = Value.objects.annotate(as_float=Cast('integer', FloatField())).get()
>>> print(value.as_float)
4.0