From 0698992bfd5eaa5d2fe99e279589c3f5819dc7d7 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 15 Feb 2021 11:21:41 -0500 Subject: [PATCH] fix repeated footnote Change-Id: Ibd8239907c3cf747d0d9a0fb670e37c9913871f8 --- doc/build/tutorial/data.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/build/tutorial/data.rst b/doc/build/tutorial/data.rst index 5da8b8667b..d006a9f852 100644 --- a/doc/build/tutorial/data.rst +++ b/doc/build/tutorial/data.rst @@ -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 `_ as of Python 3.7, the -- 2.47.2