diff options
| author | Andrew M. Kuchling <amk@amk.ca> | 2001-10-05 12:24:15 +0000 |
|---|---|---|
| committer | Andrew M. Kuchling <amk@amk.ca> | 2001-10-05 12:24:15 +0000 |
| commit | 38300c631a3454cae97e77fe88dc5a50c7a9e1f0 (patch) | |
| tree | 7788326cc4c65b8a493e4e651de0cc1094d21d2a | |
| parent | 16628c970961f754659accbd72dc8c7633b37591 (diff) | |
| download | cpython-git-38300c631a3454cae97e77fe88dc5a50c7a9e1f0.tar.gz | |
Fix typo in docstring
| -rw-r--r-- | Modules/threadmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/threadmodule.c b/Modules/threadmodule.c index 48f1f36cda..7050914b06 100644 --- a/Modules/threadmodule.c +++ b/Modules/threadmodule.c @@ -255,7 +255,7 @@ thread_PyThread_start_new_thread(PyObject *self, PyObject *fargs) } static char start_new_doc[] = -"start_new_thread(functon, args[, kwargs])\n\ +"start_new_thread(function, args[, kwargs])\n\ (start_new() is an obsolete synonym)\n\ \n\ Start a new thread. The thread will call the function with positional\n\ |
