]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix an improperly placed comma.
authorFred Drake <fdrake@acm.org>
Thu, 14 Jun 2001 13:58:44 +0000 (13:58 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 14 Jun 2001 13:58:44 +0000 (13:58 +0000)
Doc/lib/libprofile.tex

index 335c02f88017f86b54dc0a105dc84aed7ed8dede..90a948e185aed81c4ab4c83a22e4ed4e97dee8fd 100644 (file)
@@ -611,7 +611,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