summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2020-05-23 21:10:14 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2020-05-23 21:10:14 +0000
commitc82540033c0876690355f80a19ab46f7a9304d72 (patch)
tree1a9e80bd2e7e6a0cbe0735ed961bac97d7624cd3
parent9a04c2f65754ac7bf93e0f58f68e59b41e43e67e (diff)
parent2632a8db05d69607260d412852f7cc5c0ac0f368 (diff)
downloadsqlalchemy-c82540033c0876690355f80a19ab46f7a9304d72.tar.gz
Merge "fix typo in reference documentation"
-rw-r--r--doc/build/changelog/migration_13.rst2
-rw-r--r--lib/sqlalchemy/orm/query.py2
-rw-r--r--lib/sqlalchemy/sql/selectable.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/build/changelog/migration_13.rst b/doc/build/changelog/migration_13.rst
index 78ac21fb5..6e2913350 100644
--- a/doc/build/changelog/migration_13.rst
+++ b/doc/build/changelog/migration_13.rst
@@ -1672,7 +1672,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 7f910afed..02cfbfcb2 100644
--- a/lib/sqlalchemy/orm/query.py
+++ b/lib/sqlalchemy/orm/query.py
@@ -1599,7 +1599,7 @@ class Query(Generative):
: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 cc82c509b..85abbb5e0 100644
--- a/lib/sqlalchemy/sql/selectable.py
+++ b/lib/sqlalchemy/sql/selectable.py
@@ -3838,7 +3838,7 @@ class Select(
: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