]> granicus.if.org Git - python/commitdiff
Issue #22808: Link to the correct time method in BaseEventLoop.call_at().
authorBerker Peksag <berker.peksag@gmail.com>
Fri, 7 Nov 2014 17:51:07 +0000 (19:51 +0200)
committerBerker Peksag <berker.peksag@gmail.com>
Fri, 7 Nov 2014 17:51:07 +0000 (19:51 +0200)
Patch by Mark Grandi.

Doc/library/asyncio-eventloop.rst

index ec884759ce725eece40262a11f094cd378f59744..18d873881bc1a754fd0641fa3c36d8ad8a3df86f 100644 (file)
@@ -121,7 +121,8 @@ a different clock than :func:`time.time`.
 .. method:: BaseEventLoop.call_at(when, callback, *args)
 
    Arrange for the *callback* to be called at the given absolute timestamp
-   *when* (an int or float), using the same time reference as :meth:`time`.
+   *when* (an int or float), using the same time reference as
+   :meth:`BaseEventLoop.time`.
 
    This method's behavior is the same as :meth:`call_later`.