]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
typos in lib/sqlalchemy/ext
authorDiana Clarke <diana.joan.clarke@gmail.com>
Sun, 18 Mar 2012 02:28:29 +0000 (22:28 -0400)
committerDiana Clarke <diana.joan.clarke@gmail.com>
Sun, 18 Mar 2012 02:28:29 +0000 (22:28 -0400)
lib/sqlalchemy/ext/horizontal_shard.py
lib/sqlalchemy/ext/mutable.py
lib/sqlalchemy/ext/orderinglist.py
lib/sqlalchemy/ext/sqlsoup.py

index 6befabe843226d27e56c84c125a78f0c588897e8..47123f3d5255617f8d8d20701fe609d6eff78206 100644 (file)
@@ -10,7 +10,7 @@ Defines a rudimental 'horizontal sharding' system which allows a Session to
 distribute queries and persistence operations across multiple databases.
 
 For a usage example, see the :ref:`examples_sharding` example included in 
-the source distrbution.
+the source distribution.
 
 """
 
index 9f1bb8928399c2b039ab3754ec9337aecfcc3499..5ca9727ecb9ff9edf6b6aa6a8e1c374c55c9a1d1 100644 (file)
@@ -180,7 +180,7 @@ not picklable, due to the fact that they contain weakrefs and function
 callbacks. In our case, this is a good thing, since if this dictionary were
 picklable, it could lead to an excessively large pickle size for our value
 objects that are pickled by themselves outside of the context of the parent.
-The developer responsiblity here is only to provide a ``__getstate__`` method
+The developer responsibility here is only to provide a ``__getstate__`` method
 that excludes the :meth:`~.MutableBase._parents` collection from the pickle
 stream::
 
index 38957250b83521512b67e5dcb4160b0f4f97f8e1..97be329e98f16a5ae4ee18d02ee755be242a60f6 100644 (file)
@@ -148,7 +148,7 @@ def count_from_n_factory(start):
     return f
 
 def _unsugar_count_from(**kw):
-    """Builds counting functions from keywrod arguments.
+    """Builds counting functions from keyword arguments.
 
     Keyword argument filter, prepares a simple ``ordering_func`` from a
     ``count_from`` argument, otherwise passes ``ordering_func`` on unchanged.
index 7d36cdfa65ac634a3e5e35e0fb2a56436fdbadb8..3727f5757151622be91c842042f3ce0963ded222 100644 (file)
@@ -256,7 +256,7 @@ accepts in normal mapper definition:
 Advanced Use
 ============
 
-Sessions, Transations and Application Integration
+Sessions, Transactions and Application Integration
 -------------------------------------------------
 
 .. note::
@@ -599,7 +599,7 @@ class SqlSoup(object):
         self.session.flush()
 
     def rollback(self):
-        """Rollback the current transction.
+        """Rollback the current transaction.
 
         See :meth:`.Session.rollback`.