Skip to content

Commit 4a319fc

Browse files
doc: Consistently spell case-insensitive
While almost all occurrences of "case-insensitive{ly}" were spelled with a dash, a few were using "case insensitive{ly}" with a space instead. Fix by changing these to use a dash to be consistent. Discussion: https://postgr.es/m/[email protected]
1 parent 3e7d94f commit 4a319fc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/src/sgml/func.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5604,7 +5604,7 @@ substring('foobar' similar '#"o_b#"%' escape '#') <lineannotation>NULL</linea
56045604
<returnvalue>boolean</returnvalue>
56055605
</para>
56065606
<para>
5607-
String matches regular expression, case insensitively
5607+
String matches regular expression, case-insensitively
56085608
</para>
56095609
<para>
56105610
<literal>'thomas' ~* 'T.*ma'</literal>
@@ -5632,7 +5632,7 @@ substring('foobar' similar '#"o_b#"%' escape '#') <lineannotation>NULL</linea
56325632
<returnvalue>boolean</returnvalue>
56335633
</para>
56345634
<para>
5635-
String does not match regular expression, case insensitively
5635+
String does not match regular expression, case-insensitively
56365636
</para>
56375637
<para>
56385638
<literal>'thomas' !~* 'T.*ma'</literal>

doc/src/sgml/query.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ CREATE TABLE weather (
134134
differently than above, or even all on one line. Two dashes
135135
(<quote><literal>--</literal></quote>) introduce comments.
136136
Whatever follows them is ignored up to the end of the line. SQL
137-
is case insensitive about key words and identifiers, except
137+
is case-insensitive about key words and identifiers, except
138138
when identifiers are double-quoted to preserve the case (not done
139139
above).
140140
</para>

doc/src/sgml/syntax.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ INSERT INTO MY_TABLE VALUES (3, 'hi there');
144144
<primary>case sensitivity</primary>
145145
<secondary>of SQL commands</secondary>
146146
</indexterm>
147-
Key words and unquoted identifiers are case insensitive. Therefore:
147+
Key words and unquoted identifiers are case-insensitive. Therefore:
148148
<programlisting>
149149
UPDATE MY_TABLE SET A = 5;
150150
</programlisting>

0 commit comments

Comments
 (0)