]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Make docs listing of param order for event.listen match the code
authorJeff Widman <jeff@jeffwidman.com>
Thu, 17 Dec 2015 13:54:50 +0000 (05:54 -0800)
committerJeff Widman <jeff@jeffwidman.com>
Thu, 17 Dec 2015 13:54:50 +0000 (05:54 -0800)
doc/build/core/event.rst

index e6f6c9e06befc89ebcd0a1f211b7826319af9066..ced81a6b2742624b4540422788d7764ca00b331f 100644 (file)
@@ -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.