]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Squashed commit of the following:
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 5 Jul 2019 14:06:16 +0000 (10:06 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 5 Jul 2019 14:06:49 +0000 (10:06 -0400)
commit d4f3bedc74568b7ec543988ee2d43e64c5ace28f
Author: Carson Ip <carsonip@users.noreply.github.com>
Date:   Fri Jul 5 11:20:12 2019 +0800

    Fix typo in docstring

commit a3e4b05744f51ec5d12a2fee1ad6093de904273e
Author: Carson Ip <carsonip@users.noreply.github.com>
Date:   Fri Jul 5 11:14:57 2019 +0800

    Fix typo in docstring

Change-Id: Ifa2ebff5629bf970e5fac28bba64d501376cfae9
(cherry picked from commit 28daa34cb887e0f07e9f53e4b9e7596e6df12cd9)

lib/sqlalchemy/ext/baked.py
lib/sqlalchemy/orm/strategy_options.py

index 09a9d73b7308f9eb9ac557c2f3ef229c2ff82418..2af42820eecb7bbeeb8afee0cfb322be73d21665 100644 (file)
@@ -628,7 +628,7 @@ def bake_lazy_loaders():
 def unbake_lazy_loaders():
     """Disable the use of baked queries for all lazyloaders systemwide.
 
-    This method now raises NotImplmentedError() as the "baked" implementation
+    This method now raises NotImplementedError() as the "baked" implementation
     is the only lazy load implementation.  The
     :paramref:`.relationship.bake_queries` flag may be used to disable
     the caching of queries on a per-relationship basis.
index b444a030252b660f59501587d562ad0aa00f5d1d..980fb3e73452caca78391d2e07c81354ca77b351 100644 (file)
@@ -505,7 +505,7 @@ class _UnboundLoad(Load):
     """Represent a loader option that isn't tied to a root entity.
 
     The loader option will produce an entity-linked :class:`.Load`
-    object when it is passed :metfh:`.Query.options`.
+    object when it is passed :meth:`.Query.options`.
 
     This provides compatibility with the traditional system
     of freestanding options, e.g. ``joinedload('x.y.z')``.