diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-09-06 10:56:19 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-09-06 10:56:19 -0400 |
commit | a9aa4c2178002e9a290daa46ff858296fdfc5e58 (patch) | |
tree | 0bf01021990b254dbdbff2d98dddbfcfc651d9b8 /lib/sqlalchemy | |
parent | ccde5319358aa3eb0e075dbcf01024001230b02b (diff) | |
parent | 290bc39493af4e3e3971aca0490d3b557f830a0f (diff) | |
download | sqlalchemy-a9aa4c2178002e9a290daa46ff858296fdfc5e58.tar.gz |
merge doc fixes from tip
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r-- | lib/sqlalchemy/orm/collections.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/collections.py b/lib/sqlalchemy/orm/collections.py index a9ad34239..884ec1122 100644 --- a/lib/sqlalchemy/orm/collections.py +++ b/lib/sqlalchemy/orm/collections.py @@ -189,7 +189,7 @@ class collection(object): The recipe decorators all require parens, even those that take no arguments:: - @collection.adds('entity'): + @collection.adds('entity') def insert(self, position, entity): ... @collection.removes_return() |