]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix some long lines that sneaked in with the spelling fixes change
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 25 Jan 2019 20:13:48 +0000 (15:13 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 25 Jan 2019 20:13:48 +0000 (15:13 -0500)
Change-Id: Icc6d8e564c9d31da2adc39d060e077c3d4811186

lib/sqlalchemy/orm/query.py
lib/sqlalchemy/sql/schema.py

index 80d596b4c69532fdbd5348b1cc5b0804d07d36ed..f86cb9085541b7274c54e42369c65938ec9ba35f 100644 (file)
@@ -2842,8 +2842,8 @@ class Query(object):
         approach to the use case of applying an :func:`.aliased` construct
         explicitly throughout a query.  Instead of referring to the
         :func:`.aliased` construct explicitly,
-        :meth:`.Query.select_entity_from` automatically *adapts* all occurrences
-        of the entity to the target selectable.
+        :meth:`.Query.select_entity_from` automatically *adapts* all
+        occurrences of the entity to the target selectable.
 
         Given a case for :func:`.aliased` such as selecting ``User``
         objects from a SELECT statement::
index 07c0017b95e8fa9a12435bfa382594e84de2b1a8..8997e119f93f1f4490f3bb254a7fd35cb624fe91 100644 (file)
@@ -4028,8 +4028,8 @@ class MetaData(SchemaItem):
             automatic resolution of dependency cycles between tables, which
             are usually caused by mutually dependent foreign key constraints.
             To resolve these cycles, either the
-            :paramref:`.ForeignKeyConstraint.use_alter` parameter may be applied
-            to those constraints, or use the
+            :paramref:`.ForeignKeyConstraint.use_alter` parameter may be
+            applied to those constraints, or use the
             :func:`.schema.sort_tables_and_constraints` function which will
             break out foreign key constraints involved in cycles separately.