Skip to content

Commit dbfeb82

Browse files
committed
doc: Fix syntax in example
LANGUAGE 'plpgsql' no longer works. The single quotes need to be removed. Erwin Brandstetter
1 parent c37ec84 commit dbfeb82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/sgml/plpgsql.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1694,7 +1694,7 @@ BEGIN
16941694
RETURN;
16951695
END
16961696
$BODY$
1697-
LANGUAGE 'plpgsql' ;
1697+
LANGUAGE plpgsql;
16981698

16991699
SELECT * FROM getallfoo();
17001700
</programlisting>

0 commit comments

Comments
 (0)