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

Commit 7e422ac

Browse files
committed
Fix silly error in plpgsql example.
1 parent fa09b6d commit 7e422ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/src/sgml/plsql.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.48 2001/11/15 23:32:39 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.49 2001/11/16 00:40:11 tgl Exp $
33
-->
44

55
<chapter id="plpgsql">
@@ -1184,9 +1184,9 @@ END IF;
11841184
<programlisting>
11851185
IF number = 0 THEN
11861186
result := ''zero'';
1187-
ELSIF number &lt; 0 THEN
1188-
result := ''positive'';
11891187
ELSIF number &gt; 0 THEN
1188+
result := ''positive'';
1189+
ELSIF number &lt; 0 THEN
11901190
result := ''negative'';
11911191
ELSE
11921192
-- hmm, the only other possibility is that number IS NULL

0 commit comments

Comments
 (0)