@@ -1225,7 +1225,7 @@ CREATE COLLATION ignore_accents (provider = icu, locale = 'und-u-ks-level1-kc-tr
1225
1225
<programlisting>
1226
1226
-- ignore differences in accents and case
1227
1227
CREATE COLLATION ignore_accent_case (provider = icu, deterministic = false, locale = 'und-u-ks-level1');
1228
- SELECT 'Å ' = 'A' COLLATE ignore_accent_case; -- true
1228
+ SELECT 'Å ' = 'A' COLLATE ignore_accent_case; -- true
1229
1229
SELECT 'z' = 'Z' COLLATE ignore_accent_case; -- true
1230
1230
1231
1231
-- upper case letters sort before lower case.
@@ -1282,7 +1282,7 @@ SELECT 'w;x*y-z' = 'wxyz' COLLATE num_ignore_punct; -- true
1282
1282
<entry><literal>'ab' = U&'a\2063b'</literal></entry>
1283
1283
<entry><literal>'x-y' = 'x_y'</literal></entry>
1284
1284
<entry><literal>'g' = 'G'</literal></entry>
1285
- <entry><literal>'n' = 'ñ '</literal></entry>
1285
+ <entry><literal>'n' = 'ñ '</literal></entry>
1286
1286
<entry><literal>'y' = 'z'</literal></entry>
1287
1287
</row>
1288
1288
</thead>
@@ -1346,7 +1346,7 @@ SELECT 'w;x*y-z' = 'wxyz' COLLATE num_ignore_punct; -- true
1346
1346
1347
1347
<para>
1348
1348
At every level, even with full normalization off, basic normalization is
1349
- performed. For example, <literal>'á '</literal> may be composed of the
1349
+ performed. For example, <literal>'á '</literal> may be composed of the
1350
1350
code points <literal>U&'\0061\0301'</literal> or the single code
1351
1351
point <literal>U&'\00E1'</literal>, and those sequences will be
1352
1352
considered equal even at the <literal>identic</literal> level. To treat
@@ -1430,8 +1430,8 @@ SELECT 'x-y' = 'x_y' COLLATE level4; -- false
1430
1430
<entry><literal>false</literal></entry>
1431
1431
<entry>
1432
1432
Backwards comparison for the level 2 differences. For example,
1433
- locale <literal>und-u-kb</literal> sorts <literal>'àe '</literal>
1434
- before <literal>'aé '</literal>.
1433
+ locale <literal>und-u-kb</literal> sorts <literal>'àe '</literal>
1434
+ before <literal>'aé '</literal>.
1435
1435
</entry>
1436
1436
</row>
1437
1437
0 commit comments