diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2015-12-17 05:54:50 -0800 |
---|---|---|
committer | Jeff Widman <jeff@jeffwidman.com> | 2015-12-17 05:54:50 -0800 |
commit | 30be49c157e6ebe47c32abb98a570a013418b1e6 (patch) | |
tree | 7b0bbafdc6a9b8e9ce00124d6aa72e3ea67146c9 | |
parent | 738d515b95f1ff94d7dfd265883237d247d1c153 (diff) | |
download | sqlalchemy-pr/224.tar.gz |
Make docs listing of param order for event.listen match the codepr/224
-rw-r--r-- | doc/build/core/event.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/build/core/event.rst b/doc/build/core/event.rst index e6f6c9e06..ced81a6b2 100644 --- a/doc/build/core/event.rst +++ b/doc/build/core/event.rst @@ -14,9 +14,9 @@ Event Registration ------------------ Subscribing to an event occurs through a single API point, the :func:`.listen` function, -or alternatively the :func:`.listens_for` decorator. These functions -accept a user-defined listening function, a string identifier which identifies the event to be -intercepted, and a target. Additional positional and keyword arguments to these +or alternatively the :func:`.listens_for` decorator. These functions accept a +target, a string identifier which identifies the event to be intercepted, and +a user-defined listening function. Additional positional and keyword arguments to these two functions may be supported by specific types of events, which may specify alternate interfaces for the given event function, or provide instructions regarding secondary event targets based on the given target. |