[pypy-svn] r21350 - pypy/dist/pypy/doc

arigo at codespeak.net arigo at codespeak.net
Tue Dec 20 15:30:08 CET 2005


Author: arigo
Date: Tue Dec 20 15:30:05 2005
New Revision: 21350

Modified:
   pypy/dist/pypy/doc/dynamic-language-translation.txt
Log:
Typoish inconsistencies.


Modified: pypy/dist/pypy/doc/dynamic-language-translation.txt
==============================================================================
--- pypy/dist/pypy/doc/dynamic-language-translation.txt	(original)
+++ pypy/dist/pypy/doc/dynamic-language-translation.txt	Tue Dec 20 15:30:05 2005
@@ -749,7 +749,7 @@
 For a function ``f`` of the user program, we call *arg_f_1, ...,
 arg_f_n* the variables bound to the input arguments of ``f`` (which are
 actually the input variables of the first block in the flow graph of
-``f``) and *return_f* the variable bound to the return value of ``f``
+``f``) and *returnvar_f* the variable bound to the return value of ``f``
 (which is the single input variable of a special empty "return" block
 ending the flow graph).
 
@@ -986,7 +986,7 @@
 
 Also ``[note]`` that we do not generally try to prove the correctness and
 safety of the user program, preferring to rely on test coverage for
-that.  This is apparent in the third rule above, which considers
+that.  This is apparent in the last rule above, which considers
 concatenation of two potentially "nullable" strings, i.e. strings that
 the annotator could not prove to be non-None.  Instead of reporting an
 error, we take it as a hint that the two strings will not actually be



More information about the Pypy-commit mailing list