summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql
diff options
context:
space:
mode:
authorGlyph <glyph@twistedmatrix.com>2018-09-06 15:58:12 -0700
committerMike Bayer <mike_mp@zzzcomputing.com>2018-09-07 17:33:50 -0400
commitaf0e9b7eccaba086fb594ed4371318a970e09a00 (patch)
tree60a488e5bd1671b3fab0d49b687dfe4c01a8faad /lib/sqlalchemy/dialects/postgresql
parent4a51aec1f517f1896e964009d39f2eb3fefae3c8 (diff)
downloadsqlalchemy-af0e9b7eccaba086fb594ed4371318a970e09a00.tar.gz
minor spelling correction
(cherry picked from commit 35a458c7822a8071a61da84fce021fb42cd9b086)
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/dml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/dml.py b/lib/sqlalchemy/dialects/postgresql/dml.py
index 9e049fa7b..555a9006c 100644
--- a/lib/sqlalchemy/dialects/postgresql/dml.py
+++ b/lib/sqlalchemy/dialects/postgresql/dml.py
@@ -32,7 +32,7 @@ class Insert(StandardInsert):
PG's ON CONFLICT clause allows reference to the row that would
be inserted, known as ``excluded``. This attribute provides
- all columns in this row to be referenaceable.
+ all columns in this row to be referenceable.
.. seealso::