]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- typo
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 20 Nov 2014 23:40:46 +0000 (18:40 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 20 Nov 2014 23:40:46 +0000 (18:40 -0500)
docs/build/tutorial.rst

index 84297f1dbaee3f2ff6c5b5ae2cc56cd14fc371fd..7b7f25626d89a112bf0f11ac2db342994faaa470 100644 (file)
@@ -1405,9 +1405,9 @@ Consider if we merged into our source repository another code branch which conta
 a revision for another table called ``shopping_cart``.  This revision was made
 against our first Alembic revision, the one that generated ``account``.   After
 loading the second source tree in, a new file
-``27c6a30d7c24_add_accont_table.py`` exists within our ``versions`` directory.
+``27c6a30d7c24_add_shopping_cart_table.py`` exists within our ``versions`` directory.
 Both it, as well as ``ae1027a6acf_add_a_column.py``, reference
-``1975ea83b712`` as the "downgrade" revision.  To illustrate::
+``1975ea83b712_add_account_table.py`` as the "downgrade" revision.  To illustrate::
 
     # main source tree:
     1975ea83b712 (add account table) -> ae1027a6acf (add a column)