]> 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)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 24 May 2016 20:30:15 +0000 (16:30 -0400)
(cherry picked from commit 7a1e2dd92f28ad1b43e0e487b4fbc8088364713f)

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 80edd950726a9344d24f60ce14f8ff37ea62a1a5..40c80ec3909910eb17821b2356231992155ca9c4 100644 (file)
@@ -844,7 +844,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 97f720cb4c6fb7fda8d61b66092c35d069709469..586383469329bae591e27d616dfb135bd48957d0 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 37f60e1a2bbcb937e51d9f0e2de90ca7005dab81..b4389d0f79f33e03a29e23ffb89ca979fa56ac2c 100644 (file)
@@ -112,7 +112,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.