]> 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)
committerGitHub <noreply@github.com>
Wed, 7 Feb 2024 18:14:24 +0000 (19:14 +0100)
lib/sqlalchemy/sql/dml.py

index a0ab097f0537f8ffe57bec9d2bd68878b1515204..e934028297ea5f36e68e900fe89c564907920631 100644 (file)
@@ -1551,7 +1551,7 @@ class Update(DMLWhereBase, ValuesBase):
         E.g.::
 
             stmt = table.update().ordered_values(
-                ("name", "ed"), ("ident": "foo")
+                ("name", "ed"), ("ident", "foo")
             )
 
         .. seealso::