diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2012-01-18 00:57:19 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2012-01-18 00:57:19 (GMT) |
commit | 855889b4bf4478cc359fb1354ab5bbb99a7829aa (patch) | |
tree | 86822a2a0790ca14aa1a3b203318a70f8186e34c /Modules/timemodule.c | |
parent | b94b266cfc94491eef206c082ff210d147016cbc (diff) | |
download | cpython-855889b4bf4478cc359fb1354ab5bbb99a7829aa.zip cpython-855889b4bf4478cc359fb1354ab5bbb99a7829aa.tar.gz cpython-855889b4bf4478cc359fb1354ab5bbb99a7829aa.tar.bz2 |
Issue #10278: fix a typo in the doc
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r-- | Modules/timemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c index b6972ae..8fa115c 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -775,7 +775,7 @@ PyDoc_STRVAR(wallclock_doc, \n\ Return the current time in fractions of a second to the system's best\n\ ability. Use this when the most accurate representation of wall-clock is\n\ -required, i.e. when "processor time" is inappropriate. The reference point\n\ +required, i.e. when \"processor time\" is inappropriate. The reference point\n\ of the returned value is undefined so only the difference of consecutive\n\ calls is valid."); |