[pypy-svn] r15215 - pypy/dist/pypy/documentation

hpk at codespeak.net hpk at codespeak.net
Thu Jul 28 00:59:04 CEST 2005


Author: hpk
Date: Thu Jul 28 00:59:03 2005
New Revision: 15215

Modified:
   pypy/dist/pypy/documentation/translation.txt
Log:
issue100 resolved 

fixed 'explicitely' to 'explicitly' according to Brett's comment


Modified: pypy/dist/pypy/documentation/translation.txt
==============================================================================
--- pypy/dist/pypy/documentation/translation.txt	(original)
+++ pypy/dist/pypy/documentation/translation.txt	Thu Jul 28 00:59:03 2005
@@ -126,7 +126,7 @@
 
 The annotator itself (``pypy.translator.annrpython``) works by
 propagating the annotations forward in the flow graphs, starting at some
-entry point function, possibly with explicitely provided annotations
+entry point function, possibly with explicitly provided annotations
 about the entry point's input arguments.  It considers each operation in
 the flow graph in turn.  Each operation takes a few input arguments
 (Variables and Constants) and produce a single result (a Variable).
@@ -623,8 +623,8 @@
 a very limited, easily controllable set of types, and define implementations of
 types like list in this elementary world.  The ``malloc()`` function is a kind
 of placeholder, which must eventually be provided by the code generator for the
-target platform; but as we have just seen its Python implementation in `
-rpython/lltype.py`_ works too, which is primarily useful for testing,
+target platform; but as we have just seen its Python implementation in 
+`rpython/lltype.py`_ works too, which is primarily useful for testing,
 interactive exploring, etc.
 
 The argument to ``malloc()`` is the structure type directly, but it returns a
@@ -634,7 +634,7 @@
     <ptr(gc) to GcStruct point { x: Signed, y: Signed }>
 
 For the purpose of creating structures with pointers to other structures, we can
-declare pointer types explicitely::
+declare pointer types explicitly::
 
     >>> typeOf(p) == Ptr(POINT)
     True
@@ -722,7 +722,7 @@
 (non-GC non-varsize) structures.
 
 GcArrays can be malloc()ed.  The length must be specified when malloc() is
-called, and arrays cannot be resized; this length is stored explicitely in a
+called, and arrays cannot be resized; this length is stored explicitly in a
 header.
 
 The non-GC version of Array can be used as the last field of a structure, to



More information about the Pypy-commit mailing list