]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fixed typo on ordered_values example. (#10984)
authorSiloƩ Garcez <51986786+Roast-Lord@users.noreply.github.com>
Wed, 7 Feb 2024 18:14:24 +0000 (15:14 -0300)
committerFederico Caselli <cfederico87@gmail.com>
Wed, 7 Feb 2024 18:14:51 +0000 (19:14 +0100)
(cherry picked from commit 009aa8cb63dd082e1ba0c4a96a39980d36e26e71)

lib/sqlalchemy/sql/dml.py

index 1151d61ad807af448793b3162a1dc27e9986e088..779be1dac1278f7ec6c1c6cf27a21f24aba61d54 100644 (file)
@@ -1536,7 +1536,7 @@ class Update(DMLWhereBase, ValuesBase):
         E.g.::
 
             stmt = table.update().ordered_values(
-                ("name", "ed"), ("ident": "foo")
+                ("name", "ed"), ("ident", "foo")
             )
 
         .. seealso::