summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2023-03-12 14:02:34 +0000
committerGitHub <noreply@github.com>2023-03-12 15:02:34 +0100
commit4db33e96d1b5b4ba1a739e15b28835495f78eee4 (patch)
tree68aeed7c0d453ab20d571c052be3c95597dca0c5 /docs
parent4b1bfea2846f66f504265cec46ee1fe94ee9c98b (diff)
downloaddjango-4db33e96d1b5b4ba1a739e15b28835495f78eee4.tar.gz
Corrected example in CreateCollation() docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/postgres/operations.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/ref/contrib/postgres/operations.txt b/docs/ref/contrib/postgres/operations.txt
index 8928e4e0e2..1c4cd562d1 100644
--- a/docs/ref/contrib/postgres/operations.txt
+++ b/docs/ref/contrib/postgres/operations.txt
@@ -128,9 +128,10 @@ For example, to create a collation for German phone book ordering::
operations = [
CreateCollation(
- "german_phonebook",
+ "case_insensitive",
provider="icu",
locale="und-u-ks-level2",
+ deterministic=False,
),
...,
]