From: Alec Joseph Rivera Date: Wed, 4 Nov 2015 01:47:07 +0000 (+0000) Subject: Fixed some grammatical issue and spelling typos X-Git-Tag: rel_0_8_4~14^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=baa3822a30275607544dee498a5cb279d1dc1398;p=thirdparty%2Fsqlalchemy%2Falembic.git Fixed some grammatical issue and spelling typos --- diff --git a/docs/build/tutorial.rst b/docs/build/tutorial.rst index 46d15039..03fd758d 100644 --- a/docs/build/tutorial.rst +++ b/docs/build/tutorial.rst @@ -37,19 +37,19 @@ The directory includes these directories/files: may even have more than one. * ``env.py`` - This is a Python script that is run whenever the alembic migration tool is invoked. At the very least, it contains instructions to configure and generate a SQLAlchemy engine, - procure a connection from that engine along with a transaction, and to then invoke the migration + procure a connection from that engine along with a transaction, and then invoke the migration engine, using the connection as a source of database connectivity. The ``env.py`` script is part of the generated environment so that the way migrations run is entirely customizable. The exact specifics of how to connect are here, as well as - the specifics of how the migration enviroment are invoked. The script can be modified + the specifics of how the migration environment are invoked. The script can be modified so that multiple engines can be operated upon, custom arguments can be passed into the migration environment, application-specific libraries and models can be loaded in and made available. Alembic includes a set of initialization templates which feature different varieties of ``env.py`` for different use cases. -* ``README`` - included with the various enviromnent templates, should have something +* ``README`` - included with the various environment templates, should have something informative. * ``script.py.mako`` - This is a `Mako `_ template file which is used to generate new migration scripts. Whatever is here is used to generate new