Skip to content

Commit 53ecfdd

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

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
@@ -1708,7 +1708,7 @@ BEGIN
17081708
RETURN;
17091709
END
17101710
$BODY$
1711-
LANGUAGE 'plpgsql' ;
1711+
LANGUAGE plpgsql;
17121712

17131713
SELECT * FROM getallfoo();
17141714
</programlisting>

0 commit comments

Comments
 (0)