Fix broken markup.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 24 Aug 2005 18:26:36 +0000 (18:26 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 24 Aug 2005 18:26:36 +0000 (18:26 +0000)
doc/src/sgml/release.sgml

index 3f286800cf4ee2cac6148c9517809d5005b652e3..da8052ebbb81b0960c8f9dea2f962f0bfd95cf30 100644 (file)
@@ -1243,17 +1243,18 @@ $PostgreSQL$
 
       <listitem>
        <para>
-        Allow SQL, plperl, PL/PgSQL functions to use <command>OUT</> and
+        Allow SQL and PL/PgSQL functions to use <command>OUT</> and
         <command>INOUT</> parameters (Tom)
        </para>
        <para>
         <command>OUT</> is an alternate way for a function to return
-        values. Instead of using <command>RETURNS</>, the function's
-        parameters can be specified as <command>OUT</> or
-        <command>INOUT</>, allowing multiple values to be returned by
-        the function. While returning multiple values from a function
+        values. Instead of using <command>RETURN</>, values can be
+        returned by assigning to parameters declared as <command>OUT</> or
+        <command>INOUT</>.  This is notationally simpler in some cases,
+        particularly so when multiple values need to be returned.
+        While returning multiple values from a function
         was possible in previous releases, this greatly simplifies the
-        process.
+        process.  (The feature will be extended to other PLs in due course.)
        </para>
       </listitem>
 
@@ -1261,10 +1262,8 @@ $PostgreSQL$
        <para>
         Move language handlers into the pg_catalog schema
        </para>
-       </para>
        <para>
-        This makes it possible to dump installed languages and makes it
-        easier to drop the public schema.
+        This makes it easier to drop the public schema if desired.
        </para>
       </listitem>