summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphael <paloma@css-maps.eu>2018-11-29 19:11:24 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2018-11-30 10:10:11 -0500
commitf778b8a8e02b39cd3b583df0c5eee448bae107b3 (patch)
tree8a6943a20a8217f2fdd90ba2afe86af70d8f6a03
parent01e8ac6f5464afb74dbb840d8e5e5153ab43dbc2 (diff)
downloadsqlalchemy-f778b8a8e02b39cd3b583df0c5eee448bae107b3.tar.gz
typo
typo (cherry picked from commit 0a0b36686d5da0e7d04974c8df0ece574b71f3cb)
-rw-r--r--lib/sqlalchemy/sql/schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py
index 88050b87e..3782d29df 100644
--- a/lib/sqlalchemy/sql/schema.py
+++ b/lib/sqlalchemy/sql/schema.py
@@ -1098,7 +1098,7 @@ class Column(SchemaItem, ColumnClause):
:param onupdate: A scalar, Python callable, or
:class:`~sqlalchemy.sql.expression.ClauseElement` representing a
default value to be applied to the column within UPDATE
- statements, which wil be invoked upon update if this column is not
+ statements, which will be invoked upon update if this column is not
present in the SET clause of the update. This is a shortcut to
using :class:`.ColumnDefault` as a positional argument with
``for_update=True``.