1
0
mirror of https://github.com/django/django.git synced 2025-04-15 12:54:38 +00:00

[3.2.x] Fixed typo in docs/ref/contrib/postgres/fields.txt.

Backport of 05bbff82638731a6abfed2fe0ae06a4d429cb32f from master
This commit is contained in:
Mariusz Felisiak 2021-03-04 10:43:00 +01:00
parent 44969681b8
commit cd7a5bf33d

View File

@ -474,7 +474,7 @@ Returns objects where the array of values is the given value. Note that the
order is not guaranteed to be reliable, so this transform is mainly useful for
using in conjunction with lookups on
:class:`~django.contrib.postgres.fields.ArrayField`. Uses the SQL function
``avalues()``. For example::
``avals()``. For example::
>>> Dog.objects.create(name='Rufus', data={'breed': 'labrador'})
>>> Dog.objects.create(name='Meg', data={'breed': 'collie', 'owner': 'Bob'})