]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Minor grammatical improvements in doc/build/intro.rst.
authorRandy Barlow <randy@electronsweatshop.com>
Wed, 5 Oct 2016 19:07:57 +0000 (15:07 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 5 Oct 2016 20:43:46 +0000 (16:43 -0400)
(cherry picked from commit df4639ab717273490b17085d5cdb240eef3cf0c0)

doc/build/intro.rst

index 3231bfe9c00cfff54be53fbb9d49c5452466ff4b..19b1d467f47dddd1b4e1ce121f70b10c287563b7 100644 (file)
@@ -9,7 +9,7 @@ The SQLAlchemy SQL Toolkit and Object Relational Mapper
 is a comprehensive set of tools for working with
 databases and Python. It has several distinct areas of
 functionality which can be used individually or combined
-together. Its major components are illustrated in below,
+together. Its major components are illustrated below,
 with component dependencies organized into layers:
 
 .. image:: sqla_arch_small.png
@@ -77,7 +77,7 @@ SQLAlchemy has been tested against the following platforms:
 .. versionchanged:: 0.9
    Python 2.6 is now the minimum Python version supported.
 
-Platforms that don't currently have support include Jython, IronPython.
+Platforms that don't currently have support include Jython and IronPython.
 Jython has been supported in the past and may be supported in future
 releases as well, depending on the state of Jython itself.
 
@@ -136,9 +136,9 @@ and 3.xx series of cPython.
     The C extensions now compile on Python 3 as well as Python 2.
 
 ``setup.py`` will automatically build the extensions if an appropriate platform is
-detected. If the build of the C extensions fails, due to missing compiler or
-other issue, the setup process will output a warning message, and re-run the
-build without the C extensions, upon completion reporting final status.
+detected. If the build of the C extensions fails due to a missing compiler or
+other issue, the setup process will output a warning message and re-run the
+build without the C extensions upon completion, reporting final status.
 
 To run the build/install without even attempting to compile the C extensions,
 the ``DISABLE_SQLALCHEMY_CEXT`` environment variable may be specified.  The