]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix repeated footnote
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 15 Feb 2021 16:21:41 +0000 (11:21 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 15 Feb 2021 16:22:13 +0000 (11:22 -0500)
Change-Id: Ibd8239907c3cf747d0d9a0fb670e37c9913871f8

doc/build/tutorial/data.rst

index 5da8b8667b6bfaec1e8a893bc99b4cb0b1f517e3..d006a9f852ebb0f7e8673b242865dda16ec94d07 100644 (file)
@@ -1870,7 +1870,7 @@ Parameter Ordered Updates
 Another MySQL-only behavior is that the order of parameters in the SET clause
 of an UPDATE actually impacts the evaluation of each expression.   For this use
 case, the :meth:`_sql.Update.ordered_values` method accepts a sequence of
-tuples so that this order may be controlled [1]_::
+tuples so that this order may be controlled [2]_::
 
   >>> update_stmt = (
   ...     update(some_table).
@@ -1883,7 +1883,7 @@ tuples so that this order may be controlled [1]_::
   {opensql}UPDATE some_table SET y=:y, x=(some_table.y + :y_1)
 
 
-.. [1] While Python dictionaries are
+.. [2] While Python dictionaries are
    `guaranteed to be insert ordered
    <https://mail.python.org/pipermail/python-dev/2017-December/151283.html>`_
    as of Python 3.7, the