diff --git a/doc/src/sgml/ref/create_view.sgml b/doc/src/sgml/ref/create_view.sgml
index 7b6b750c6de..f8a4740608a 100644
--- a/doc/src/sgml/ref/create_view.sgml
+++ b/doc/src/sgml/ref/create_view.sgml
@@ -415,7 +415,7 @@ CREATE VIEW vista AS SELECT text 'Hello World' AS hello;
DELETE, or MERGE statement
on the view into the corresponding statement on the underlying base
relation. INSERT statements that have an ON
- CONFLICT UPDATE clause are fully supported.
+ CONFLICT DO UPDATE clause are fully supported.
@@ -430,7 +430,7 @@ CREATE VIEW vista AS SELECT text 'Hello World' AS hello;
an INSERT or MERGE command can
potentially insert base-relation rows
that do not satisfy the WHERE condition and thus are not
- visible through the view (ON CONFLICT UPDATE may
+ visible through the view (ON CONFLICT DO UPDATE may
similarly affect an existing row not visible through the view).
The CHECK OPTION may be used to prevent
INSERT, UPDATE, and