From: Daniel Gustafsson Date: Wed, 17 Aug 2022 08:05:03 +0000 (+0200) Subject: doc: Consistently spell case-insensitive X-Git-Url: http://git.postgresql.org/gitweb/-?a=commitdiff_plain;h=4a319fce7671ffbe2a730f79529b7a2ef3794d41;p=users%2Frhaas%2Fpostgres.git 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/7657EDEE-5EE2-4AAB-BA95-47B4F71653E1@yesql.se --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 053d4dc650..8dd63c0455 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -5604,7 +5604,7 @@ substring('foobar' similar '#"o_b#"%' escape '#') NULLboolean - String matches regular expression, case insensitively + String matches regular expression, case-insensitively 'thomas' ~* 'T.*ma' @@ -5632,7 +5632,7 @@ substring('foobar' similar '#"o_b#"%' escape '#') NULLboolean - String does not match regular expression, case insensitively + String does not match regular expression, case-insensitively 'thomas' !~* 'T.*ma' diff --git a/doc/src/sgml/query.sgml b/doc/src/sgml/query.sgml index 71d644f432..6f31a5a1d6 100644 --- a/doc/src/sgml/query.sgml +++ b/doc/src/sgml/query.sgml @@ -134,7 +134,7 @@ CREATE TABLE weather ( differently than above, or even all on one line. Two dashes (--) introduce comments. Whatever follows them is ignored up to the end of the line. SQL - is case insensitive about key words and identifiers, except + is case-insensitive about key words and identifiers, except when identifiers are double-quoted to preserve the case (not done above). diff --git a/doc/src/sgml/syntax.sgml b/doc/src/sgml/syntax.sgml index a99c24373e..93ad71737f 100644 --- a/doc/src/sgml/syntax.sgml +++ b/doc/src/sgml/syntax.sgml @@ -144,7 +144,7 @@ INSERT INTO MY_TABLE VALUES (3, 'hi there'); case sensitivity of SQL commands - Key words and unquoted identifiers are case insensitive. Therefore: + Key words and unquoted identifiers are case-insensitive. Therefore: UPDATE MY_TABLE SET A = 5;