diff options
author | Stephen Frost <sfrost@snowman.net> | 2014-01-26 09:40:34 -0500 |
---|---|---|
committer | Stephen Frost <sfrost@snowman.net> | 2014-01-26 09:40:34 -0500 |
commit | 00ba97365d356823c48c02147b4cd66f8f06b1d6 (patch) | |
tree | e518daef6d4a4df1e1c16942a76e66a90e86d001 /doc/src | |
parent | 89774b58b0ea2874765cae10c094bb6aaf707feb (diff) | |
download | postgresql-00ba97365d356823c48c02147b4cd66f8f06b1d6.tar.gz postgresql-00ba97365d356823c48c02147b4cd66f8f06b1d6.zip |
Use E, not e, for escaping in example docs
From the Department of Nitpicking, be consistent with other escaping
and use 'E' instead of 'e' to escape the string in the example docs
for GET DISAGNOSTICS stack = PG_CONTEXT.
Noticed by Department Chief Magnus Hagander.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/plpgsql.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index df41cfc1c30..25e98bdf8ea 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -2804,7 +2804,7 @@ DECLARE stack text; BEGIN GET DIAGNOSTICS stack = PG_CONTEXT; - RAISE NOTICE e'--- Call Stack ---\n%', stack; + RAISE NOTICE E'--- Call Stack ---\n%', stack; RETURN 1; END; $$ LANGUAGE plpgsql; |