summaryrefslogtreecommitdiff
path: root/docs/ref
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:43:41 +0100
commitcd7a5bf33d178d568ab873a0d74f1cd597df68e1 (patch)
tree1d906c0262c9a69aafaa8e566a77001bd900e961 /docs/ref
parent44969681b82a69bf21f9ede4aa0b2795be8d5ffa (diff)
[3.2.x] Fixed typo in docs/ref/contrib/postgres/fields.txt.
Backport of 05bbff82638731a6abfed2fe0ae06a4d429cb32f from master
Diffstat (limited to 'docs/ref')
-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 df9ebc48d6..ca52df38b6 100644
--- a/docs/ref/contrib/postgres/fields.txt
+++ b/docs/ref/contrib/postgres/fields.txt
@@ -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'})