Skip to content

Commit

Permalink
Fix descriptions coming after Parameters (#401)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdickinson committed Jul 12, 2021
1 parent daaa03c commit 4dad26c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions traits_futures/i_message_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ def send(self, message):
"""
Send a message to the router.
Not thread-safe. The 'start', 'send' and 'stop' methods should
all be called from the same thread.
Parameters
----------
message : object
Typically this will be immutable, small, and pickleable.
Not thread-safe. The 'start', 'send' and 'stop' methods should
all be called from the same thread.
Raises
------
RuntimeError
Expand Down
6 changes: 3 additions & 3 deletions traits_futures/multiprocessing_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,14 @@ def send(self, message):
"""
Send a message to the router.
Not thread-safe. The 'start', 'send' and 'stop' methods should
all be called from the same thread.
Parameters
----------
message : object
Typically this will be immutable, small, and pickleable.
Not thread-safe. The 'start', 'send' and 'stop' methods should
all be called from the same thread.
Raises
------
RuntimeError
Expand Down
6 changes: 3 additions & 3 deletions traits_futures/multithreading_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,14 @@ def send(self, message):
"""
Send a message to the router.
Not thread-safe. The 'start', 'send' and 'stop' methods should
all be called from the same thread.
Parameters
----------
message : object
Typically this will be immutable, small, and pickleable.
Not thread-safe. The 'start', 'send' and 'stop' methods should
all be called from the same thread.
Raises
------
RuntimeError
Expand Down

0 comments on commit 4dad26c

Please sign in to comment.