summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-03-04 10:43:00 +0100
committerGitHub <noreply@github.com>2021-03-04 10:43:00 +0100
commit05bbff82638731a6abfed2fe0ae06a4d429cb32f (patch)
tree380e2e7490a5f4010abd597ca5879d0cb7282283
parent20ddc3b81d849be8fc7961081ccb7a6d7e454a89 (diff)
downloaddjango-05bbff82638731a6abfed2fe0ae06a4d429cb32f.tar.gz
Fixed typo in docs/ref/contrib/postgres/fields.txt.
-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 7754ff3d65..7447d0819e 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'})