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

arigo at codespeak.net arigo at codespeak.net
Fri Jun 23 17:43:13 CEST 2006


Author: arigo
Date: Fri Jun 23 17:43:13 2006
New Revision: 29259

Modified:
   pypy/dist/pypy/doc/_ref.txt
   pypy/dist/pypy/doc/rtyper.txt
Log:
Typos, added section numbers.


Modified: pypy/dist/pypy/doc/_ref.txt
==============================================================================
--- pypy/dist/pypy/doc/_ref.txt	(original)
+++ pypy/dist/pypy/doc/_ref.txt	Fri Jun 23 17:43:13 2006
@@ -48,6 +48,7 @@
 .. _`objspace/trace.py`:
 .. _`pypy/objspace/trace.py`: ../../pypy/objspace/trace.py
 .. _`pypy/rpython`:
+.. _`pypy/rpython/`:
 .. _`rpython/`: ../../pypy/rpython
 .. _`pypy/rpython/extfunctable.py`: ../../pypy/rpython/extfunctable.py
 .. _`pypy/rpython/lltypesystem/lltype.py`:

Modified: pypy/dist/pypy/doc/rtyper.txt
==============================================================================
--- pypy/dist/pypy/doc/rtyper.txt	(original)
+++ pypy/dist/pypy/doc/rtyper.txt	Fri Jun 23 17:43:13 2006
@@ -1,7 +1,10 @@
 The RPython Typer
 =================
 
-http://codespeak.net/pypy/dist/pypy/rpython/
+.. contents::
+.. sectnum::
+
+The RPython Typer lives in the directory `pypy/rpython/`_.
 
 
 Overview
@@ -710,12 +713,12 @@
 The LLInterpreter
 -----------------
 
-The LLInterpreter is a simply piece of code that is able to interpret flow
+The LLInterpreter is a simple piece of code that is able to interpret flow
 graphs. This is very useful for testing purposes, especially if you work on
 the `RPython Typer`_. The most useful interface for it is the ``interpret``
 function in the file `pypy/rpython/test/test_llinterp.py`_. It takes as
 arguments a function and a list of arguments with which the function is
-supposed to be called. Then it generates the flow graph, annotates is
+supposed to be called. Then it generates the flow graph, annotates it
 according to the types of the arguments you passed to it and runs the
 LLInterpreter on the result. Example::
 



More information about the Pypy-commit mailing list