summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiana Clarke <diana.joan.clarke@gmail.com>2012-03-17 22:28:29 -0400
committerDiana Clarke <diana.joan.clarke@gmail.com>2012-03-17 22:28:29 -0400
commitb60fdb094057a648850947f688eb15617cfd50d7 (patch)
treeb163c5fc755a9d5ace7c97732a5d2f8160983f17
parent920afb6127b5ee7f0abc2147d52677176a27232c (diff)
downloadsqlalchemy-b60fdb094057a648850947f688eb15617cfd50d7.tar.gz
typos in lib/sqlalchemy/ext
-rw-r--r--lib/sqlalchemy/ext/horizontal_shard.py2
-rw-r--r--lib/sqlalchemy/ext/mutable.py2
-rw-r--r--lib/sqlalchemy/ext/orderinglist.py2
-rw-r--r--lib/sqlalchemy/ext/sqlsoup.py4
4 files changed, 5 insertions, 5 deletions
diff --git a/lib/sqlalchemy/ext/horizontal_shard.py b/lib/sqlalchemy/ext/horizontal_shard.py
index 6befabe84..47123f3d5 100644
--- a/lib/sqlalchemy/ext/horizontal_shard.py
+++ b/lib/sqlalchemy/ext/horizontal_shard.py
@@ -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.
"""
diff --git a/lib/sqlalchemy/ext/mutable.py b/lib/sqlalchemy/ext/mutable.py
index 9f1bb8928..5ca9727ec 100644
--- a/lib/sqlalchemy/ext/mutable.py
+++ b/lib/sqlalchemy/ext/mutable.py
@@ -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::
diff --git a/lib/sqlalchemy/ext/orderinglist.py b/lib/sqlalchemy/ext/orderinglist.py
index 38957250b..97be329e9 100644
--- a/lib/sqlalchemy/ext/orderinglist.py
+++ b/lib/sqlalchemy/ext/orderinglist.py
@@ -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.
diff --git a/lib/sqlalchemy/ext/sqlsoup.py b/lib/sqlalchemy/ext/sqlsoup.py
index 7d36cdfa6..3727f5757 100644
--- a/lib/sqlalchemy/ext/sqlsoup.py
+++ b/lib/sqlalchemy/ext/sqlsoup.py
@@ -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`.