diff options
author | Glyph <glyph@twistedmatrix.com> | 2018-09-06 15:58:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-06 15:58:12 -0700 |
commit | 35a458c7822a8071a61da84fce021fb42cd9b086 (patch) | |
tree | 95d63d484138d9a028b0971a5bffc3b7237cd3e4 /lib/sqlalchemy/dialects/postgresql/dml.py | |
parent | 71b01adc7b31baab7bbcf40123633b87ee53bf64 (diff) | |
download | sqlalchemy-35a458c7822a8071a61da84fce021fb42cd9b086.tar.gz |
minor spelling correction
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/dml.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/dml.py | 2 |
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:: |