diff options
author | Joe Conway <mail@joeconway.com> | 2004-08-08 05:55:55 +0000 |
---|---|---|
committer | Joe Conway <mail@joeconway.com> | 2004-08-08 05:55:55 +0000 |
commit | 4187adc63117d70b2117ee61535eff64687836ba (patch) | |
tree | c478322816ccdc1bbffaee4917d2d79a2108b929 /doc/src | |
parent | da8325fa5cb6a896ad48d90c25643f41b4ec743c (diff) | |
download | postgresql-4187adc63117d70b2117ee61535eff64687836ba.tar.gz postgresql-4187adc63117d70b2117ee61535eff64687836ba.zip |
Minor clarification of documentation regarding trailing whitespace.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/array.sgml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/array.sgml b/doc/src/sgml/array.sgml index e5ca426158e..7376034577c 100644 --- a/doc/src/sgml/array.sgml +++ b/doc/src/sgml/array.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.37 2004/08/08 05:01:51 joe Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.38 2004/08/08 05:55:55 joe Exp $ --> <sect1 id="arrays"> <title>Arrays</title> @@ -585,10 +585,10 @@ SELECT f1[1][-2][3] AS e1, f1[1][-1][5] AS e2 quotes around any individual array element. You <emphasis>must</> do so if the element value would otherwise confuse the array-value parser. For example, elements containing curly braces, commas (or whatever the - delimiter character is), double quotes, backslashes, or leading white - space must be double-quoted. To put a double quote or backslash in a - quoted array element value, precede it with a backslash. Alternatively, - you can use backslash-escaping to protect all data characters that would + delimiter character is), double quotes, backslashes, or leading or trailing + whitespace must be double-quoted. To put a double quote or backslash in a + quoted array element value, precede it with a backslash. Alternatively, you + can use backslash-escaping to protect all data characters that would otherwise be taken as array syntax. </para> |