Author: Alex Gaynor <alex.gay...@gmail.com>
Branch: extradoc
Changeset: r5101:dd6af335e817
Date: 2013-10-25 16:18 -0700
http://bitbucket.org/pypy/extradoc/changeset/dd6af335e817/

Log:    fixed typos (via cyli)

diff --git a/blog/draft/coverage.rst b/blog/draft/coverage.rst
--- a/blog/draft/coverage.rst
+++ b/blog/draft/coverage.rst
@@ -50,7 +50,7 @@
 Technical details
 -----------------
 
-So how'd we do it? Previous, using ``sys.settrace()`` (which ``coverage.py``
+So how'd we do it? Previously, using ``sys.settrace()`` (which ``coverage.py``
 uses under the hood) disabled the JIT. Except it didn't just disable the JIT,
 it did it in a particularly insidious way, the JIT had no idea it was being
 disabled!
@@ -64,7 +64,7 @@
 tracing, but then we'd abort, and reap none of the benefits.
 
 To fix this, we adjusted some of the heuristics in the JIT, to better show it
-how ``sys.settrace()`` works. Previous the JIT saw "here's an opaque function
+how ``sys.settrace()`` works. Previously the JIT saw "here's an opaque function
 which gets the frame object, I wonder if it messes with the frame!" Now we let
 the JIT look inside the trace function, so it's able to see that
 ``coverage.py`` isn't messing with the frame in any weird ways, it's just
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to