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

rxe at codespeak.net rxe at codespeak.net
Wed Nov 29 01:22:53 CET 2006


Author: rxe
Date: Wed Nov 29 01:22:42 2006
New Revision: 35096

Modified:
   pypy/dist/pypy/doc/rlib.txt
Log:
minor grammar tweaks/typos

Modified: pypy/dist/pypy/doc/rlib.txt
==============================================================================
--- pypy/dist/pypy/doc/rlib.txt	(original)
+++ pypy/dist/pypy/doc/rlib.txt	Wed Nov 29 01:22:42 2006
@@ -8,11 +8,11 @@
 
 
 This page lists some of the modules in `pypy/rlib`_ together with some hints
-for what they can be used. The modules there are supposed to make up some sort
-of library for RPython programs (since most of the standard library modules are
-not RPython). Most of these modules are somewhat rough still and are likely to
-be changed at one point.  Usually it is useful to look at the tests in
-`pypy/rlib/test`_ to get an impression how the modules should be used.
+for what they can be used for. The modules here will make up some general
+library useful for RPython programs (since most of the standard library modules
+are not RPython). Most of these modules are somewhat rough still and are likely
+to change at some point.  Usually it is useful to look at the tests in
+`pypy/rlib/test`_ to get an impression of how to use a module.
 
 .. _`pypy/rlib`: ../../pypy/rlib
 .. _`pypy/rlib/test`: ../../pypy/rlib/test
@@ -54,7 +54,7 @@
 
 ``ComputedIntSymbolic``:
     Instances of ``ComputedIntSymbolic`` are treated like integers of unknown
-    value by the annotator. Their value is determined by a non-argument function
+    value by the annotator. The value is determined by a non-argument function
     (which needs to be passed into the constructor of the class). When the
     backend emits code, the function is called to determine the value.
 
@@ -214,7 +214,7 @@
 
 The streamio_ contains an RPython stream I/O implementation (which was started
 by Guido van Rossum as `sio.py`_ in the CPython sandbox as a prototype for the
-upcoming new file implementation in Python 300).
+upcoming new file implementation in Python 3000).
 
 .. _streamio: ../../pypy/rlib/streamio.py
 .. _`sio.py`: http://svn.python.org/view/sandbox/trunk/sio/sio.py
@@ -223,7 +223,7 @@
 ==========
 
 The unroll_ module most importantly contains the function ``unrolling_iterable``
-wich wraps an iterator. Looping over the iterator in RPython code will not
+which wraps an iterator. Looping over the iterator in RPython code will not
 produce a loop in the resulting flow graph but will unroll the loop instead.
 
 .. _unroll: ../../pypy/rlib/unroll.py



More information about the Pypy-commit mailing list