Author: Maciej Fijalkowski <fij...@gmail.com>
Branch: extradoc
Changeset: r4031:a0bbad7107d7
Date: 2012-01-13 18:37 +0200
http://bitbucket.org/pypy/extradoc/changeset/a0bbad7107d7/

Log:    typo

diff --git a/blog/draft/tm.rst b/blog/draft/tm.rst
--- a/blog/draft/tm.rst
+++ b/blog/draft/tm.rst
@@ -10,7 +10,7 @@
 Let me remind you that the GIL is the technique used in both CPython and
 PyPy to safely run multi-threaded programs: it is a global lock that
 prevents multiple threads from actually running at the same time.  The
-reason to do that is that it would have desastrous effects in the
+reason to do that is that it would have disastrous effects in the
 interpreter if both threads access the same object concurrently --- to
 the point that in CPython even just manipulating the object's reference
 counter needs to be protected by the lock.
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to