]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Spelling fixes: "the a"
authorVille Skyttä <ville.skytta@iki.fi>
Thu, 5 May 2016 06:00:28 +0000 (09:00 +0300)
committerVille Skyttä <ville.skytta@iki.fi>
Thu, 5 May 2016 06:00:28 +0000 (09:00 +0300)
doc/build/faq/ormconfiguration.rst
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/ext/mutable.py
lib/sqlalchemy/orm/strategies.py

index faaee449e91c36186624428aa83d639d79e4107f..24eacb7182c1459b801192efeaeb68825775330c 100644 (file)
@@ -294,7 +294,7 @@ the two queries may not see the same results:
     ORDER BY anon_1.users_id
 
 Depending on database specifics, there is
-a chance we may get the a result like the following for the two queries::
+a chance we may get a result like the following for the two queries::
 
     -- query #1
     +--------+
index 859819a3430635da0955b0a72d0bb36442efca1d..ff855a5390f0a86188f64e41231b1d642402f264 100644 (file)
@@ -877,7 +877,7 @@ class Connection(Connectable):
         return self.execute(object, *multiparams, **params).scalar()
 
     def execute(self, object, *multiparams, **params):
-        """Executes the a SQL statement construct and returns a
+        """Executes a SQL statement construct and returns a
         :class:`.ResultProxy`.
 
         :param object: The statement to be executed.  May be
index 571bbbda31fdde0482786015c398ef57cf8b68ec..dd5a37bb7169fff092a5fa54ba39e83329c10821 100644 (file)
@@ -46,7 +46,7 @@ with any type whose target Python type may be mutable, including
 :class:`.PickleType`, :class:`.postgresql.ARRAY`, etc.
 
 When using the :mod:`sqlalchemy.ext.mutable` extension, the value itself
-tracks all parents which reference it.  Below, we illustrate the a simple
+tracks all parents which reference it.  Below, we illustrate a simple
 version of the :class:`.MutableDict` dictionary object, which applies
 the :class:`.Mutable` mixin to a plain Python dictionary::
 
index 3c03a681dfb69cc866baa6d577487b6c33aa7864..61be59622e950983777bf4a3061d653ac87c0501 100644 (file)
@@ -100,7 +100,7 @@ def _register_attribute(
 
 @properties.ColumnProperty.strategy_for(instrument=False, deferred=False)
 class UninstrumentedColumnLoader(LoaderStrategy):
-    """Represent the a non-instrumented MapperProperty.
+    """Represent a non-instrumented MapperProperty.
 
     The polymorphic_on argument of mapper() often results in this,
     if the argument is against the with_polymorphic selectable.