From: Neil Conway Date: Sun, 16 Jul 2006 23:59:58 +0000 (+0000) Subject: Minor documentation tweak: in the tables of functions and operators, X-Git-Tag: REL8_2_BETA1~545 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c1e59cc5d972fdbe73340898c1867d209bc65218;p=postgresql Minor documentation tweak: in the tables of functions and operators, don't include a space between the function name and the parenthesis that begins its parameter list, for consistency. --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 2dd99d33ff..c9b474e089 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,4 +1,4 @@ - + Functions and Operators @@ -6145,12 +6145,12 @@ SELECT TIMESTAMP WITH TIME ZONE '2001-02-16 20:38:40-05' AT TIME ZONE 'MST'; CURRENT_DATE CURRENT_TIME CURRENT_TIMESTAMP -CURRENT_TIME (precision) -CURRENT_TIMESTAMP (precision) +CURRENT_TIME(precision) +CURRENT_TIMESTAMP(precision) LOCALTIME LOCALTIMESTAMP -LOCALTIME (precision) -LOCALTIMESTAMP (precision) +LOCALTIME(precision) +LOCALTIMESTAMP(precision) @@ -7685,8 +7685,7 @@ SELECT NULLIF(value, '(none)') ... - array_append - (anyarray, anyelement) + array_append(anyarray, anyelement) anyarray @@ -7697,8 +7696,7 @@ SELECT NULLIF(value, '(none)') ... - array_cat - (anyarray, anyarray) + array_cat(anyarray, anyarray) anyarray @@ -7709,8 +7707,7 @@ SELECT NULLIF(value, '(none)') ... - array_dims - (anyarray) + array_dims(anyarray) text @@ -7721,8 +7718,7 @@ SELECT NULLIF(value, '(none)') ... - array_lower - (anyarray, int) + array_lower(anyarray, int) int @@ -7733,8 +7729,7 @@ SELECT NULLIF(value, '(none)') ... - array_prepend - (anyelement, anyarray) + array_prepend(anyelement, anyarray) anyarray @@ -7745,8 +7740,7 @@ SELECT NULLIF(value, '(none)') ... - array_to_string - (anyarray, text) + array_to_string(anyarray, text) text @@ -7757,8 +7751,7 @@ SELECT NULLIF(value, '(none)') ... - array_upper - (anyarray, int) + array_upper(anyarray, int) int @@ -7769,8 +7762,7 @@ SELECT NULLIF(value, '(none)') ... - string_to_array - (text, text) + string_to_array(text, text) text[]