]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix "special_key" attribute name in association proxy documentation
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 17 Mar 2020 02:06:15 +0000 (22:06 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 17 Mar 2020 02:06:52 +0000 (22:06 -0400)
Fixes: #5204
Change-Id: I1366be823d753bdcd92c98b948bdfa7960a27eb7
(cherry picked from commit 1768dd2a08dee92d73d160a5ba437df4ced37d2c)

doc/build/orm/extensions/associationproxy.rst

index b2b5a4cb455d99e187ec04863225220aa9013693..ab59d1bbdf5ba9280b549d346da5e5d2804df114 100644 (file)
@@ -328,7 +328,7 @@ when new elements are added to the dictionary::
             return 'Keyword(%s)' % repr(self.keyword)
 
 We illustrate the ``.keywords`` collection as a dictionary, mapping the
-``UserKeyword.string_key`` value to ``Keyword`` objects::
+``UserKeyword.special_key`` value to ``Keyword`` objects::
 
     >>> user = User('log')