aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2018-06-20 16:07:07 +0200
committerMagnus Hagander <magnus@hagander.net>2018-06-20 16:07:07 +0200
commit99ba8d2f8f84fdc2721000dc5727a41e2ca8d944 (patch)
tree53d6a4069c98d14311546b92d4e78f3d5c330b40
parent5862174ec78a173c41710c5ef33feb993ae45cc7 (diff)
downloadpostgresql-99ba8d2f8f84fdc2721000dc5727a41e2ca8d944.tar.gz
postgresql-99ba8d2f8f84fdc2721000dc5727a41e2ca8d944.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 071cdb610f0..d7319610bdc 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