Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9b6b0b0

Browse files
committed
Fix typo in PL/pgsql code example.
Backpatch to 8.4. Marc Cousin. Review by Kevin Grittner.
1 parent d33cfbd commit 9b6b0b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/src/sgml/plpgsql.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.154 2010/06/29 22:29:14 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.155 2010/07/27 20:02:06 rhaas Exp $ -->
22

33
<chapter id="plpgsql">
44
<title><application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language</title>
@@ -4279,7 +4279,7 @@ show errors;
42794279
<programlisting>
42804280
CREATE OR REPLACE FUNCTION cs_update_referrer_type_proc() RETURNS void AS $func$
42814281
DECLARE
4282-
CURSOR referrer_keys IS
4282+
referrer_keys CURSOR IS
42834283
SELECT * FROM cs_referrer_keys
42844284
ORDER BY try_order;
42854285
func_body text;

0 commit comments

Comments
 (0)