summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAles Dokshanin <3935698+alesdokshanin@users.noreply.github.com>2019-10-23 18:37:49 +0300
committerGitHub <noreply@github.com>2019-10-23 18:37:49 +0300
commit26d9a29514ea0949f09f75622065e737fabeabe1 (patch)
tree6ce6c0c046754e88debca98ddc8d0a289099246c
parent2cae55269b6745bd733be142a6e199d8ecf9b50a (diff)
downloadsqlalchemy-26d9a29514ea0949f09f75622065e737fabeabe1.tar.gz
Typo fix
-rw-r--r--lib/sqlalchemy/dialects/postgresql/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py
index 0ea6d4296..909d568a7 100644
--- a/lib/sqlalchemy/dialects/postgresql/base.py
+++ b/lib/sqlalchemy/dialects/postgresql/base.py
@@ -409,7 +409,7 @@ for UPDATE::
The :meth:`.Insert.on_conflict_do_update` method does **not** take into
account Python-side default UPDATE values or generation functions, e.g.
- e.g. those specified using :paramref:`.Column.onupdate`.
+ those specified using :paramref:`.Column.onupdate`.
These values will not be exercised for an ON CONFLICT style of UPDATE,
unless they are manually specified in the
:paramref:`.Insert.on_conflict_do_update.set_` dictionary.