aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2016-09-20 12:00:00 -0400
committerPeter Eisentraut <peter_e@gmx.net>2016-09-20 12:00:00 -0400
commitdfddf931707bfc9724179b0f554649dabccf45aa (patch)
tree38b48b0e72be058ee17114f6c9aeaea5e591bc93
parent00e1933ef30c212b35d3360aff0e77211352dbd7 (diff)
downloadpostgresql-dfddf931707bfc9724179b0f554649dabccf45aa.tar.gz
postgresql-dfddf931707bfc9724179b0f554649dabccf45aa.zip
doc: Correct ALTER USER MAPPING example
The existing example threw an error. From: gabrielle <gorthx@gmail.com>
-rw-r--r--doc/src/sgml/ref/alter_user_mapping.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/alter_user_mapping.sgml b/doc/src/sgml/ref/alter_user_mapping.sgml
index 3a908130d86..3be54afee55 100644
--- a/doc/src/sgml/ref/alter_user_mapping.sgml
+++ b/doc/src/sgml/ref/alter_user_mapping.sgml
@@ -89,9 +89,9 @@ ALTER USER MAPPING FOR { <replaceable class="parameter">user_name</replaceable>
<title>Examples</title>
<para>
- Change the password for user mapping <literal>bob</>, server<literal> foo</>:
+ Change the password for user mapping <literal>bob</>, server <literal>foo</>:
<programlisting>
-ALTER USER MAPPING FOR bob SERVER foo OPTIONS (user 'bob', password 'public');
+ALTER USER MAPPING FOR bob SERVER foo OPTIONS (SET password 'public');
</programlisting></para>
</refsect1>