diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index d14519b613..855b05c0ef 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -1,4 +1,4 @@ - + <application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language @@ -2583,18 +2583,16 @@ MOVE direction { FROM | IN } < MOVE repositions a cursor without retrieving any data. MOVE works exactly like the - FETCH command, except it only positions the - cursor and does not return rows. As with SELECT - INTO, the special variable FOUND can + FETCH command, except it only repositions the + cursor and does not return the row moved to. As with SELECT + INTO, the special variable FOUND can be checked to see whether the cursor was successfully repositioned or not. - The direction clause can be any of the - variants allowed in the SQL command except the ones that can move by - more than one row; namely, it can be + The options for the direction clause are + the same as for FETCH, namely NEXT, PRIOR, FIRST,