diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-10-05 12:24:15 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-10-05 12:24:15 (GMT) |
commit | 38300c631a3454cae97e77fe88dc5a50c7a9e1f0 (patch) | |
tree | 7788326cc4c65b8a493e4e651de0cc1094d21d2a | |
parent | 16628c970961f754659accbd72dc8c7633b37591 (diff) | |
download | cpython-38300c631a3454cae97e77fe88dc5a50c7a9e1f0.zip cpython-38300c631a3454cae97e77fe88dc5a50c7a9e1f0.tar.gz cpython-38300c631a3454cae97e77fe88dc5a50c7a9e1f0.tar.bz2 |
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 48f1f36..7050914 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\ |