Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c1e59cc

Browse files
author
Neil Conway
committed
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.
1 parent 5c75ff2 commit c1e59cc

File tree

1 file changed

+13
-21
lines changed

1 file changed

+13
-21
lines changed

doc/src/sgml/func.sgml

Lines changed: 13 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.326 2006/07/13 23:59:47 neilc Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.327 2006/07/16 23:59:58 neilc Exp $ -->
22

33
<chapter id="functions">
44
<title>Functions and Operators</title>
@@ -6145,12 +6145,12 @@ SELECT TIMESTAMP WITH TIME ZONE '2001-02-16 20:38:40-05' AT TIME ZONE 'MST';
61456145
CURRENT_DATE
61466146
CURRENT_TIME
61476147
CURRENT_TIMESTAMP
6148-
CURRENT_TIME (<replaceable>precision</replaceable>)
6149-
CURRENT_TIMESTAMP (<replaceable>precision</replaceable>)
6148+
CURRENT_TIME(<replaceable>precision</replaceable>)
6149+
CURRENT_TIMESTAMP(<replaceable>precision</replaceable>)
61506150
LOCALTIME
61516151
LOCALTIMESTAMP
6152-
LOCALTIME (<replaceable>precision</replaceable>)
6153-
LOCALTIMESTAMP (<replaceable>precision</replaceable>)
6152+
LOCALTIME(<replaceable>precision</replaceable>)
6153+
LOCALTIMESTAMP(<replaceable>precision</replaceable>)
61546154
</synopsis>
61556155
</para>
61566156

@@ -7685,8 +7685,7 @@ SELECT NULLIF(value, '(none)') ...
76857685
<row>
76867686
<entry>
76877687
<literal>
7688-
<function>array_append</function>
7689-
(<type>anyarray</type>, <type>anyelement</type>)
7688+
<function>array_append</function>(<type>anyarray</type>, <type>anyelement</type>)
76907689
</literal>
76917690
</entry>
76927691
<entry><type>anyarray</type></entry>
@@ -7697,8 +7696,7 @@ SELECT NULLIF(value, '(none)') ...
76977696
<row>
76987697
<entry>
76997698
<literal>
7700-
<function>array_cat</function>
7701-
(<type>anyarray</type>, <type>anyarray</type>)
7699+
<function>array_cat</function>(<type>anyarray</type>, <type>anyarray</type>)
77027700
</literal>
77037701
</entry>
77047702
<entry><type>anyarray</type></entry>
@@ -7709,8 +7707,7 @@ SELECT NULLIF(value, '(none)') ...
77097707
<row>
77107708
<entry>
77117709
<literal>
7712-
<function>array_dims</function>
7713-
(<type>anyarray</type>)
7710+
<function>array_dims</function>(<type>anyarray</type>)
77147711
</literal>
77157712
</entry>
77167713
<entry><type>text</type></entry>
@@ -7721,8 +7718,7 @@ SELECT NULLIF(value, '(none)') ...
77217718
<row>
77227719
<entry>
77237720
<literal>
7724-
<function>array_lower</function>
7725-
(<type>anyarray</type>, <type>int</type>)
7721+
<function>array_lower</function>(<type>anyarray</type>, <type>int</type>)
77267722
</literal>
77277723
</entry>
77287724
<entry><type>int</type></entry>
@@ -7733,8 +7729,7 @@ SELECT NULLIF(value, '(none)') ...
77337729
<row>
77347730
<entry>
77357731
<literal>
7736-
<function>array_prepend</function>
7737-
(<type>anyelement</type>, <type>anyarray</type>)
7732+
<function>array_prepend</function>(<type>anyelement</type>, <type>anyarray</type>)
77387733
</literal>
77397734
</entry>
77407735
<entry><type>anyarray</type></entry>
@@ -7745,8 +7740,7 @@ SELECT NULLIF(value, '(none)') ...
77457740
<row>
77467741
<entry>
77477742
<literal>
7748-
<function>array_to_string</function>
7749-
(<type>anyarray</type>, <type>text</type>)
7743+
<function>array_to_string</function>(<type>anyarray</type>, <type>text</type>)
77507744
</literal>
77517745
</entry>
77527746
<entry><type>text</type></entry>
@@ -7757,8 +7751,7 @@ SELECT NULLIF(value, '(none)') ...
77577751
<row>
77587752
<entry>
77597753
<literal>
7760-
<function>array_upper</function>
7761-
(<type>anyarray</type>, <type>int</type>)
7754+
<function>array_upper</function>(<type>anyarray</type>, <type>int</type>)
77627755
</literal>
77637756
</entry>
77647757
<entry><type>int</type></entry>
@@ -7769,8 +7762,7 @@ SELECT NULLIF(value, '(none)') ...
77697762
<row>
77707763
<entry>
77717764
<literal>
7772-
<function>string_to_array</function>
7773-
(<type>text</type>, <type>text</type>)
7765+
<function>string_to_array</function>(<type>text</type>, <type>text</type>)
77747766
</literal>
77757767
</entry>
77767768
<entry><type>text[]</type></entry>

0 commit comments

Comments
 (0)