diff options
author | Fred Drake <fdrake@acm.org> | 2001-06-14 13:57:16 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-06-14 13:57:16 (GMT) |
commit | 8fcd4b5ab3668b3ff9e70ef9bf43fff2f7793271 (patch) | |
tree | 233e5dafcdb60accd6686dbc30dd5a868ee511a6 /Doc | |
parent | ede0509111a7cd2789e92191da12bed7318dba4b (diff) | |
download | cpython-8fcd4b5ab3668b3ff9e70ef9bf43fff2f7793271.zip cpython-8fcd4b5ab3668b3ff9e70ef9bf43fff2f7793271.tar.gz cpython-8fcd4b5ab3668b3ff9e70ef9bf43fff2f7793271.tar.bz2 |
Fix an improperly placed comma.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libprofile.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libprofile.tex b/Doc/lib/libprofile.tex index 794f7d0..2e88c25 100644 --- a/Doc/lib/libprofile.tex +++ b/Doc/lib/libprofile.tex @@ -616,7 +616,7 @@ t = t[0] + t[1] - self.t # no calibration constant You can also achieve the same results using a derived class (and the profiler will actually run equally fast!!), but the above method is the simplest to use. I could have made the profiler ``self -calibrating'', but it would have made the initialization of the +calibrating,'' but it would have made the initialization of the profiler class slower, and would have required some \emph{very} fancy coding, or else the use of a variable where the constant \samp{.00053} was placed in the code shown. This is a \strong{VERY} critical |