summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/schema.py
diff options
context:
space:
mode:
authorRaphael <paloma@css-maps.eu>2018-11-29 19:11:24 -0500
committerGitHub <noreply@github.com>2018-11-29 19:11:24 -0500
commit0a0b36686d5da0e7d04974c8df0ece574b71f3cb (patch)
tree0459e5d1c768090918807ecc431313326e300ee3 /lib/sqlalchemy/sql/schema.py
parent576b33d46a9418424e94926bf9f02bdad3fc593f (diff)
downloadsqlalchemy-0a0b36686d5da0e7d04974c8df0ece574b71f3cb.tar.gz
typo
typo
Diffstat (limited to 'lib/sqlalchemy/sql/schema.py')
-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 67d258b90..3e9aa174a 100644
--- a/lib/sqlalchemy/sql/schema.py
+++ b/lib/sqlalchemy/sql/schema.py
@@ -1098,7 +1098,7 @@ class Column(DialectKWArgs, 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``.