diff --git a/doc/src/sgml/ref/insert.sgml b/doc/src/sgml/ref/insert.sgml index e710cf4..0406a09 100644 --- a/doc/src/sgml/ref/insert.sgml +++ b/doc/src/sgml/ref/insert.sgml @@ -194,8 +194,8 @@ INSERT INTO table_name [ AS ON CONFLICT DO UPDATE, do not include the table's name in the specification of a target column. For - example, INSERT ... ON CONFLICT DO UPDATE tab SET - table_name.col = 1 is invalid (this follows the general + example, INSERT INTO table_name ... ON CONFLICT DO UPDATE + SET table_name.col = 1 is invalid (this follows the general behavior for UPDATE).