mirror of
https://github.com/django/django.git
synced 2025-06-05 11:39:13 +00:00
Fixed #27209 -- Fixed typo in docs/ref/models/database-functions.txt.
Thanks Valentin Ignatyev for the report.
This commit is contained in:
parent
a1ad896422
commit
767ba00976
@ -37,7 +37,7 @@ Usage example::
|
|||||||
>>> from django.db.models import FloatField
|
>>> from django.db.models import FloatField
|
||||||
>>> from django.db.models.functions import Cast
|
>>> from django.db.models.functions import Cast
|
||||||
>>> Value.objects.create(integer=4)
|
>>> 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)
|
>>> print(value.as_float)
|
||||||
4.0
|
4.0
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user