From 806a0b5d2879539e9b184351194906bc8752b4c2 Mon Sep 17 00:00:00 2001 From: Mathieu Dupuy Date: Tue, 23 Apr 2019 13:41:18 +0200 Subject: [PATCH] replace 'sequencial argument' by 'positional' in doc --- Doc/library/threading.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index a9d5268dd2b8652..44272e13062d6eb 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -250,7 +250,7 @@ since it is impossible to detect the termination of alien threads. You may override this method in a subclass. The standard :meth:`run` method invokes the callable object passed to the object's constructor as - the *target* argument, if any, with sequential and keyword arguments taken + the *target* argument, if any, with positional and keyword arguments taken from the *args* and *kwargs* arguments, respectively. .. method:: join(timeout=None)