From: Peter Eisentraut <peter_e@gmx.net>
Date: Tue, 22 Mar 2011 15:44:38 +0000 (+0200)
Subject: Cosmetic capitalization fix
X-Git-Tag: REL9_1_ALPHA5~31
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=856a23018c976794655d6f53b72fb692178fbb27;p=postgresql

Cosmetic capitalization fix
---

diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml
index ba785e9a53..d39158ac12 100644
--- a/doc/src/sgml/plpython.sgml
+++ b/doc/src/sgml/plpython.sgml
@@ -1199,7 +1199,7 @@ $$ LANGUAGE plpythonu;
    ad-hoc queries.  A PL/Python equivalent of dynamic SQL from <xref
    linkend="plpgsql-quote-literal-example"> would be:
 <programlisting>
-plpy.execute("UPDATE tbl SET %s = %s where key = %s" % (
+plpy.execute("UPDATE tbl SET %s = %s WHERE key = %s" % (
     plpy.quote_ident(colname),
     plpy.quote_nullable(newvalue),
     plpy.quote_literal(keyvalue)))