More cleanups of cursor text.
authorBruce Momjian <bruce@momjian.us>
Tue, 9 Apr 2002 03:08:25 +0000 (03:08 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 9 Apr 2002 03:08:25 +0000 (03:08 +0000)
doc/src/sgml/plsql.sgml

index e7f72054a63299df91889061fe580f68198f7a9c..9f1d7e0ea9841409cc9caab07391736b0110f7be 100644 (file)
@@ -1449,8 +1449,8 @@ END LOOP;
     to worry about that, since FOR loops automatically use a cursor
     internally to avoid memory problems.) A more interesting usage is to
     return a reference to a cursor that it has created, allowing the
-    caller to read the rows. This provides one way of returning multiple
-    rows and columns from a function.
+    caller to read the rows. This provides a way to return row sets
+    from functions.
    </para>
    
    <sect2 id="plpgsql-cursor-declarations">
@@ -1691,10 +1691,10 @@ SELECT reffunc2();
   
         reffunc2      
   --------------------
-   &gt;unnamed cursor 1&lt;
+   &lt;unnamed cursor 1&gt;
   (1 row)
 
-FETCH ALL IN "&gt;unnamed cursor 1&lt;";
+FETCH ALL IN "&lt;unnamed cursor 1&gt;";
 COMMIT;
 </programlisting>
        </para>