diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-03-16 22:06:15 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-03-16 22:06:52 -0400 |
commit | c47bfd386111c4be55b79b9d65dac040735ac6ff (patch) | |
tree | 91b6dffd8fe1296e907d3a4b1b5e05345b4848a5 | |
parent | 698fd7baee86c41b6b9c458abd94215d7665e7ea (diff) | |
download | sqlalchemy-c47bfd386111c4be55b79b9d65dac040735ac6ff.tar.gz |
Fix "special_key" attribute name in association proxy documentation
Fixes: #5204
Change-Id: I1366be823d753bdcd92c98b948bdfa7960a27eb7
(cherry picked from commit 1768dd2a08dee92d73d160a5ba437df4ced37d2c)
-rw-r--r-- | doc/build/orm/extensions/associationproxy.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/extensions/associationproxy.rst b/doc/build/orm/extensions/associationproxy.rst index b2b5a4cb4..ab59d1bbd 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') |