diff options
| author | Robert Haas <rhaas@postgresql.org> | 2010-07-27 20:02:17 +0000 | 
|---|---|---|
| committer | Robert Haas <rhaas@postgresql.org> | 2010-07-27 20:02:17 +0000 | 
| commit | 43d3d2a5fdc55b1e066aff71c7f26ce07a5bc970 (patch) | |
| tree | d1a558eff6c28709e0e0363add78bd960c500b92 | |
| parent | b8174bcd703c9484fdec56c47b96ab0601208611 (diff) | |
Fix typo in PL/pgsql code example.
Backpatch to 8.4.
Marc Cousin.  Review by Kevin Grittner.
| -rw-r--r-- | doc/src/sgml/plpgsql.sgml | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index 1ed946d10ef..9d18b1594a8 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.154 2010/06/29 22:29:14 momjian Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.154.2.1 2010/07/27 20:02:17 rhaas Exp $ -->  <chapter id="plpgsql">    <title><application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language</title> @@ -4279,7 +4279,7 @@ show errors;  <programlisting>  CREATE OR REPLACE FUNCTION cs_update_referrer_type_proc() RETURNS void AS $func$  DECLARE -    CURSOR referrer_keys IS +    referrer_keys CURSOR IS          SELECT * FROM cs_referrer_keys          ORDER BY try_order;      func_body text;  | 
