aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2018-06-20 16:06:03 +0200
committerMagnus Hagander <magnus@hagander.net>2018-06-20 16:06:03 +0200
commit74cfbc8efd3f2f34d05e5c28a0299c2a7bc9c56d (patch)
treea8c508f7109c1a19a7649c8a801fd9d181d8d618
parentd9443d9608a872b1aa8697fa6f40a41573a35f9d (diff)
downloadpostgresql-74cfbc8efd3f2f34d05e5c28a0299c2a7bc9c56d.tar.gz
postgresql-74cfbc8efd3f2f34d05e5c28a0299c2a7bc9c56d.zip
Fix typo
Reported using the website comment form
-rw-r--r--doc/src/sgml/dml.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/dml.sgml b/doc/src/sgml/dml.sgml
index 1e05c84fd17..97a77309554 100644
--- a/doc/src/sgml/dml.sgml
+++ b/doc/src/sgml/dml.sgml
@@ -112,7 +112,7 @@ INSERT INTO products (product_no, name, price)
<tip>
<para>
- When inserting a lot of data at the same time, considering using
+ When inserting a lot of data at the same time, consider using
the <xref linkend="sql-copy"/> command.
It is not as flexible as the <xref linkend="sql-insert"/>
command, but is more efficient. Refer