diff --git a/doc/src/sgml/charset.sgml b/doc/src/sgml/charset.sgml
index a6143ef8a74..318e82f29e3 100644
--- a/doc/src/sgml/charset.sgml
+++ b/doc/src/sgml/charset.sgml
@@ -789,11 +789,11 @@ CREATE COLLATION german (provider = libc, locale = 'de_DE');
- CREATE COLLATION digitslast (provider = icu, locale = 'en-u-kr-latn-digit');
- CREATE COLLATION digitslast (provider = icu, locale = 'en@colReorder=latn-digit');
+ CREATE COLLATION latinlast (provider = icu, locale = 'en-u-kr-grek-latn');
+ CREATE COLLATION latinlast (provider = icu, locale = 'en@colReorder=grek-latn');
- Sort digits after Latin letters. (The default is digits before letters.)
+ Sort Greek letters before Latin ones. (The default is Latin before Greek.)
@@ -809,9 +809,9 @@ CREATE COLLATION german (provider = libc, locale = 'de_DE');
-
- CREATE COLLATION special (provider = icu, locale = 'en-u-kf-upper-kr-latn-digit');
- CREATE COLLATION special (provider = icu, locale = 'en@colCaseFirst=upper;colReorder=latn-digit');
+
+ CREATE COLLATION special (provider = icu, locale = 'en-u-kf-upper-kr-grek-latn');
+ CREATE COLLATION special (provider = icu, locale = 'en@colCaseFirst=upper;colReorder=grek-latn');
Combines both of the above options.