From 3a9b6fdb06fc9bf2fbd700ca530aa9612c003878 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 16 Mar 2020 22:06:15 -0400 Subject: [PATCH] Fix "special_key" attribute name in association proxy documentation Fixes: #5204 Change-Id: I1366be823d753bdcd92c98b948bdfa7960a27eb7 (cherry picked from commit 1768dd2a08dee92d73d160a5ba437df4ced37d2c) --- doc/build/orm/extensions/associationproxy.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build/orm/extensions/associationproxy.rst b/doc/build/orm/extensions/associationproxy.rst index 8e699efa96..2afbf73780 100644 --- a/doc/build/orm/extensions/associationproxy.rst +++ b/doc/build/orm/extensions/associationproxy.rst @@ -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') -- 2.39.5