summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-03-04 10:43:00 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-03-04 10:44:40 +0100
commit72e2cbe38f8e6608e23e87231d3d6d594d7fac6f (patch)
tree124caa6b4f7bcf545de50732373bdfa8dd8e9b59
parent05066ad961d351307f1c48d17feca3837b6d1bfb (diff)
[3.1.x] Fixed typo in docs/ref/contrib/postgres/fields.txt.
Backport of 05bbff82638731a6abfed2fe0ae06a4d429cb32f from master
-rw-r--r--docs/ref/contrib/postgres/fields.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt
index c88c4a5096..b27026bde9 100644
--- a/docs/ref/contrib/postgres/fields.txt
+++ b/docs/ref/contrib/postgres/fields.txt
@@ -464,7 +464,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'})