Skip to content

Commit

Permalink
Fix typos in parameters documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
cailloumajor authored Aug 21, 2018
1 parent 8af96e4 commit b7fd7e1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rpyc/utils/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ def connect_thread(service=VoidService, config={}, remote_service=VoidService, r
:param service: the local service to expose (defaults to Void)
:param config: configuration dict
:param server_service: the remote service to expose (of the server; defaults to Void)
:param server_config: remote configuration dict (of the server)
:param remote_service: the remote service to expose (of the server; defaults to Void)
:param remote_config: remote configuration dict (of the server)
"""
listener = socket.socket()
listener.bind(("localhost", 0))
Expand Down Expand Up @@ -286,8 +286,8 @@ def connect_multiprocess(service=VoidService, config={}, remote_service=VoidServ
:param service: the local service to expose (defaults to Void)
:param config: configuration dict
:param server_service: the remote service to expose (of the server; defaults to Void)
:param server_config: remote configuration dict (of the server)
:param remote_service: the remote service to expose (of the server; defaults to Void)
:param remote_config: remote configuration dict (of the server)
:param args: dict of local vars to pass to new connection, form {'name':var}
Contributed by *@tvanzyl*
Expand Down

0 comments on commit b7fd7e1

Please sign in to comment.