From 6853a37a83a1e4447d84258d78cc676290d4dceb Mon Sep 17 00:00:00 2001
From: Neil Conway
Date: Wed, 13 Apr 2005 00:20:10 +0000
Subject: Minor consistency improvement to the documentation on array
functions.
---
doc/src/sgml/func.sgml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
(limited to 'doc/src')
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index f879664a9ee..2df0068b0e9 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -1,5 +1,5 @@
@@ -6981,7 +6981,7 @@ SELECT NULLIF(value, '(none)') ...
text
returns a text representation of array's dimensions
- array_dims(array[[1,2,3], [4,5,6]])
+ array_dims(ARRAY[[1,2,3], [4,5,6]])
[1:2][1:3]
@@ -7017,7 +7017,7 @@ SELECT NULLIF(value, '(none)') ...
text
concatenates array elements using provided delimiter
- array_to_string(array[1, 2, 3], '~^~')
+ array_to_string(ARRAY[1, 2, 3], '~^~')
1~^~2~^~3
@@ -7029,7 +7029,7 @@ SELECT NULLIF(value, '(none)') ...
text[]
splits string into array elements using provided delimiter
- string_to_array( 'xx~^~yy~^~zz', '~^~')
+ string_to_array('xx~^~yy~^~zz', '~^~')
{xx,yy,zz}
--
cgit v1.2.3