From: Federico Caselli Date: Fri, 22 May 2020 22:11:46 +0000 (+0200) Subject: fix typo in reference documentation X-Git-Tag: rel_1_3_18~27^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30905c987c5a6a7f8fb23fa3241b25a58c3cc0b6;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix typo in reference documentation Change-Id: I5720635863f0d8a8ebfa4ddc51008bb93c1067b4 (cherry picked from commit 2632a8db05d69607260d412852f7cc5c0ac0f368) --- diff --git a/doc/build/changelog/migration_13.rst b/doc/build/changelog/migration_13.rst index e4f894de5e..490cb1066e 100644 --- a/doc/build/changelog/migration_13.rst +++ b/doc/build/changelog/migration_13.rst @@ -1676,7 +1676,7 @@ However, the current situation is that :class:`.Sequence` has been repurposed on SQL Server specifically in order to affect the "start" and "increment" parameters for the ``IDENTITY`` specification on a primary key column. In order to make the transition towards normal sequences being available as well, -using :class:.`.Sequence` will emit a deprecation warning throughout the +using :class:`.Sequence` will emit a deprecation warning throughout the 1.3 series. In order to affect "start" and "increment", use the new ``mssql_identity_start`` and ``mssql_identity_increment`` parameters on :class:`_schema.Column`:: diff --git a/lib/sqlalchemy/orm/query.py b/lib/sqlalchemy/orm/query.py index e6da753f89..b6af1dcd4d 100644 --- a/lib/sqlalchemy/orm/query.py +++ b/lib/sqlalchemy/orm/query.py @@ -1666,7 +1666,7 @@ class Query(object): :meth:`_query.Query.with_statement_hint` - :meth:.`.Query.prefix_with` - generic SELECT prefixing which also + :meth:`.Query.prefix_with` - generic SELECT prefixing which also can suit some database-specific HINT syntaxes such as MySQL optimizer hints diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index c4d05d111f..db5fae50fe 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -3283,7 +3283,7 @@ class Select(HasPrefixes, HasSuffixes, GenerativeSelect): :meth:`_expression.Select.with_hint` - :meth:.`.Select.prefix_with` - generic SELECT prefixing which also + :meth:`.Select.prefix_with` - generic SELECT prefixing which also can suit some database-specific HINT syntaxes such as MySQL optimizer hints