]> granicus.if.org Git - postgresql/commitdiff
The trim function doc did not say that the second argument could be
authorDennis Bjorklund <db@zigo.dhs.org>
Thu, 4 Mar 2004 20:09:29 +0000 (20:09 +0000)
committerDennis Bjorklund <db@zigo.dhs.org>
Thu, 4 Mar 2004 20:09:29 +0000 (20:09 +0000)
be omitted. This patch fixes that. It also fixes a bug where the
type text was not wrapped as <type>text</type>.

doc/src/sgml/func.sgml

index 007046e61d4b035ed9b120f0a7a4448ed6267173..66dae9bbdded1e14338bb1f576d70aff71a29587 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.189 2004/02/29 15:45:53 neilc Exp $
+$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.190 2004/03/04 20:09:29 dennis Exp $
 PostgreSQL documentation
 -->
 
@@ -1157,11 +1157,13 @@ PostgreSQL documentation
       </row>
 
       <row>
-       <entry><literal><function>ltrim</function>(<parameter>string</parameter> <type>text</type>, <parameter>characters</parameter> <type>text</type>)</literal></entry>
+       <entry><literal><function>ltrim</function>(<parameter>string</parameter> <type>text</type>
+        <optional>, <parameter>characters</parameter> <type>text</type></optional>)</literal>
+       </entry>
        <entry><type>text</type></entry>
        <entry>
         Remove the longest string containing only characters from
-        <parameter>characters</parameter> from the start of
+        <parameter>characters</parameter> (a space by default) from the start of
         <parameter>string</parameter>.
        </entry>
        <entry><literal>ltrim('zzzytrim', 'xyz')</literal></entry>
@@ -1255,12 +1257,13 @@ PostgreSQL documentation
       </row>
 
       <row>
-       <entry><literal><function>rtrim</function>(<parameter>string</parameter>
-        text, <parameter>characters</parameter> text)</literal></entry>
+       <entry><literal><function>rtrim</function>(<parameter>string</parameter> <type>text</type>
+        <optional>, <parameter>characters</parameter> <type>text</type></optional>)</literal>
+       </entry>
        <entry><type>text</type></entry>
        <entry>
         Remove the longest string containing only characters from
-        <parameter>characters</parameter> from the end of
+        <parameter>characters</parameter> (a space by default) from the end of
         <parameter>string</parameter>.
        </entry>
        <entry><literal>rtrim('trimxxxx', 'x')</literal></entry>