mirror of
https://github.com/django/django.git
synced 2025-02-28 19:44:35 +00:00
[4.2.x] Fixed typos in docs/ref/models/expressions.txt.
Backport of 8992a0489c01ac8ab7283264a315c005511323e2 from main
This commit is contained in:
parent
696fbc32d6
commit
61612990d8
@ -783,7 +783,7 @@ instead they are part of the selected columns.
|
|||||||
|
|
||||||
.. attribute:: template
|
.. attribute:: template
|
||||||
|
|
||||||
Defaults to ``%(expression)s OVER (%(window)s)'``. If only the
|
Defaults to ``%(expression)s OVER (%(window)s)``. If only the
|
||||||
``expression`` argument is provided, the window clause will be blank.
|
``expression`` argument is provided, the window clause will be blank.
|
||||||
|
|
||||||
The ``Window`` class is the main expression for an ``OVER`` clause.
|
The ``Window`` class is the main expression for an ``OVER`` clause.
|
||||||
@ -964,9 +964,9 @@ with the average rating of a movie's two prior and two following peers:
|
|||||||
|
|
||||||
If the database supports it, you can specify the start and end points based on
|
If the database supports it, you can specify the start and end points based on
|
||||||
values of an expression in the partition. If the ``released`` field of the
|
values of an expression in the partition. If the ``released`` field of the
|
||||||
``Movie`` model stores the release month of each movies, this ``ValueRange``
|
``Movie`` model stores the release month of each movie, this ``ValueRange``
|
||||||
example annotates each movie with the average rating of a movie's peers
|
example annotates each movie with the average rating of a movie's peers
|
||||||
released between twelve months before and twelve months after the each movie:
|
released between twelve months before and twelve months after each movie:
|
||||||
|
|
||||||
.. code-block:: pycon
|
.. code-block:: pycon
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user