Skip to content

Commit

Permalink
Doc: fix bad std. lib. references (#402)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdickinson committed Jul 12, 2021
1 parent 4dad26c commit 08bcb1a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion traits_futures/asyncio/event_loop_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class EventLoopHelper:
Parameters
----------
event_loop : asyncio.events.AbstractEventLoop
event_loop : asyncio.AbstractEventLoop
The asyncio event loop that this object wraps.
"""

Expand Down
4 changes: 2 additions & 2 deletions traits_futures/asyncio/pingee.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Pingee:
on_ping : callable
Zero-argument callable that's called on the main thread
every time a ping is received.
event_loop : asyncio.events.AbstractEventLoop
event_loop : asyncio.AbstractEventLoop
The asyncio event loop that pings will be sent to.
"""
Expand Down Expand Up @@ -93,7 +93,7 @@ class Pinger:
pingee : Pingee
The target receiver for the pings. The receiver must already be
connected.
event_loop : asyncio.events.AbstractEventLoop
event_loop : asyncio.AbstractEventLoop
The asyncio event loop that will execute the ping callback.
"""

Expand Down
2 changes: 1 addition & 1 deletion traits_futures/multiprocessing_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class MultiprocessingRouter(HasRequiredTraits):
----------
event_loop : IEventLoop
The event loop used to trigger message dispatch.
manager : multiprocessing.Manager
manager : multiprocessing.managers.SyncManager
Manager to be used for creating the shared-process queue.
"""

Expand Down

0 comments on commit 08bcb1a

Please sign in to comment.