diff --git a/mitogen/core.py b/mitogen/core.py index d829d624..9aa95973 100644 --- a/mitogen/core.py +++ b/mitogen/core.py @@ -374,7 +374,7 @@ def io_op(func, *args): :returns: Tuple of `(return_value, disconnected)`, where `return_value` is the - return value of `func(\*args)`, and `disconnected` is :data:`True` if + return value of `func(*args)`, and `disconnected` is :data:`True` if disconnection was detected, otherwise :data:`False`. """ while True: diff --git a/mitogen/parent.py b/mitogen/parent.py index fe5e6889..c0d2d294 100644 --- a/mitogen/parent.py +++ b/mitogen/parent.py @@ -1256,7 +1256,7 @@ class CallChain(object): def call_async(self, fn, *args, **kwargs): """ - Arrange for `fn(\*args, \**kwargs)` to be invoked on the context's main + Arrange for `fn(*args, **kwargs)` to be invoked on the context's main thread. :param fn: