1
0
mirror of https://github.com/django/django.git synced 2025-03-06 07:22:32 +00:00

Fixed -- 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

@ -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