diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2022-10-13 13:36:14 +0200 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2022-10-13 13:36:14 +0200 |
commit | f7eec7fe38676f0be78640f0d4d77c3e4ffcc6d6 (patch) | |
tree | 4bd9c2ed8c0be91b2e9f9a9d669704c1cae2e142 | |
parent | 91416f45f8bb8c4466e577efd79822be11645794 (diff) | |
download | postgresql-f7eec7fe38676f0be78640f0d4d77c3e4ffcc6d6.tar.gz postgresql-f7eec7fe38676f0be78640f0d4d77c3e4ffcc6d6.zip |
Fix typo in CREATE PUBLICATION reference page
While at it, simplify wording a bit.
Author: Takamichi Osumi <osumi.takamichi@fujitsu.com>
Reviewed-by: Peter Smith <smithpb2250@gmail.com>
Discussion: https://postgr.es/m/TYCPR01MB8373F93F5D094A2BE648990DED259@TYCPR01MB8373.jpnprd01.prod.outlook.com
-rw-r--r-- | doc/src/sgml/ref/create_publication.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_publication.sgml b/doc/src/sgml/ref/create_publication.sgml index c5190f0ce64..e229384e6ff 100644 --- a/doc/src/sgml/ref/create_publication.sgml +++ b/doc/src/sgml/ref/create_publication.sgml @@ -294,8 +294,8 @@ CREATE PUBLICATION <replaceable class="parameter">name</replaceable> <para> For an <command>INSERT ... ON CONFLICT</command> command, the publication will - publish the operation that actually results from the command. So depending - of the outcome, it may be published as either <command>INSERT</command> or + publish the operation that results from the command. Depending + on the outcome, it may be published as either <command>INSERT</command> or <command>UPDATE</command>, or it may not be published at all. </para> |