summaryrefslogtreecommitdiff
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:47 +0200
commit5a7a08ff2c38e3599eeaec06a22e91d3d7fee34b (patch)
treed807414600a627b654fca95e3956963f4d63c8d9
parentfaff43e6d21fc7256b87ef582e5deb8305d5b2a9 (diff)
downloadpostgresql-5a7a08ff2c38e3599eeaec06a22e91d3d7fee34b.tar.gz
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 0c65578b59..bbac95878c 100644
--- a/doc/src/sgml/dml.sgml
+++ b/doc/src/sgml/dml.sgml
@@ -116,7 +116,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