]> 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:16 +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

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

index 4bb55ca493c3487b2a73a904be63fd3c127326ad..44e28d04548848e61aa59685830e0a581a9693f2 100644 (file)
@@ -629,7 +629,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 d3ecb2b5bbf2000da3151d54e8390039a055ec3c..5ae60e8549c81d22b3610275e36fac36bac17f68 100644 (file)
@@ -506,7 +506,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')``.