Index: en/reference/ps/functions/ps-begin-page.xml
===================================================================
RCS file: /repository/phpdoc/en/reference/ps/functions/ps-begin-page.xml,v
retrieving revision 1.4
diff -u -r1.4 ps-begin-page.xml
--- en/reference/ps/functions/ps-begin-page.xml	3 Mar 2006 12:31:05 -0000	1.4
+++ en/reference/ps/functions/ps-begin-page.xml	4 Mar 2006 01:47:18 -0000
@@ -54,7 +54,7 @@
   </para>
   <note>
    <para>
-    Upt to version 0.2.6 of pslib, this function will always overwrite
+    Up to version 0.2.6 of pslib, this function will always overwrite
     the BoundingBox and Orientation, if it has been set before with
     <function>ps_set_info</function> and <function>ps_findfont</function>
     has not been called before.
Index: en/reference/ps/functions/ps-rotate.xml
===================================================================
RCS file: /repository/phpdoc/en/reference/ps/functions/ps-rotate.xml,v
retrieving revision 1.2
diff -u -r1.2 ps-rotate.xml
--- en/reference/ps/functions/ps-rotate.xml	3 Mar 2006 12:31:05 -0000	1.2
+++ en/reference/ps/functions/ps-rotate.xml	4 Mar 2006 01:47:18 -0000
@@ -60,12 +60,12 @@
 <![CDATA[
 <?php
 function rectangle($ps) {
-	ps_moveto($ps, 0, 0);
-	ps_lineto($ps, 0, 50);
-	ps_lineto($ps, 50, 50);
-	ps_lineto($ps, 50, 0);
-	ps_lineto($ps, 0, 0);
-	ps_stroke($ps);
+    ps_moveto($ps, 0, 0);
+    ps_lineto($ps, 0, 50);
+    ps_lineto($ps, 50, 50);
+    ps_lineto($ps, 50, 0);
+    ps_lineto($ps, 0, 0);
+    ps_stroke($ps);
 }
 
 $ps = ps_new();
Index: en/reference/ps/functions/ps-set-info.xml
===================================================================
RCS file: /repository/phpdoc/en/reference/ps/functions/ps-set-info.xml,v
retrieving revision 1.2
diff -u -r1.2 ps-set-info.xml
--- en/reference/ps/functions/ps-set-info.xml	3 Mar 2006 12:31:05 -0000	1.2
+++ en/reference/ps/functions/ps-set-info.xml	4 Mar 2006 01:47:18 -0000
@@ -29,7 +29,7 @@
   </para>
   <para>
    This function will have no effect anymore when the header of the postscript
-   file has been already written. I must be called before the first page
+   file has been already written. It must be called before the first page
    or the first call of <function>ps_findfont</function>.
   </para>
  </refsect1>
@@ -74,7 +74,7 @@
       </para>
       <note>
        <para>
-        Upt to version 0.2.6 of pslib, the BoundingBox and Orientation
+        Up to version 0.2.6 of pslib, the BoundingBox and Orientation
         will be overwritten by <function>ps_begin_page</function>,
         unless <function>ps_findfont</function> has been called before.
        </para>
Index: en/reference/ps/functions/ps-setmiterlimit.xml
===================================================================
RCS file: /repository/phpdoc/en/reference/ps/functions/ps-setmiterlimit.xml,v
retrieving revision 1.2
diff -u -r1.2 ps-setmiterlimit.xml
--- en/reference/ps/functions/ps-setmiterlimit.xml	3 Mar 2006 12:31:05 -0000	1.2
+++ en/reference/ps/functions/ps-setmiterlimit.xml	4 Mar 2006 01:47:18 -0000
@@ -40,7 +40,7 @@
      <listitem>
       <para>
        The maximum ratio between the miter length and the line width. Larger
-       values (&gt; 10) wil result in very long spikes when two lines meet
+       values (&gt; 10) will result in very long spikes when two lines meet
        in a small angle. Keep the default unless you know what you are doing.
       </para>
      </listitem>
Index: en/reference/ps/functions/ps-setpolydash.xml
===================================================================
RCS file: /repository/phpdoc/en/reference/ps/functions/ps-setpolydash.xml,v
retrieving revision 1.2
diff -u -r1.2 ps-setpolydash.xml
--- en/reference/ps/functions/ps-setpolydash.xml	3 Mar 2006 12:31:05 -0000	1.2
+++ en/reference/ps/functions/ps-setpolydash.xml	4 Mar 2006 01:47:18 -0000
@@ -84,7 +84,7 @@
 ]]>
     </programlisting>
     <para>
-     This examples draws a line with a 10 and 1 points long line, and
+     This examples draws a line with a 10 and 2 points long line, and
      gaps of 5 points inbetween.
     </para>
    </example>
Index: en/reference/ps/functions/ps-stringwidth.xml
===================================================================
RCS file: /repository/phpdoc/en/reference/ps/functions/ps-stringwidth.xml,v
retrieving revision 1.4
diff -u -r1.4 ps-stringwidth.xml
--- en/reference/ps/functions/ps-stringwidth.xml	3 Mar 2006 12:31:05 -0000	1.4
+++ en/reference/ps/functions/ps-stringwidth.xml	4 Mar 2006 01:47:19 -0000
@@ -42,7 +42,7 @@
      <term><parameter>text</parameter></term>
      <listitem>
       <para>
-       The text for which the geometry is to be calculated.
+       The text for which the witdh is to be calculated.
       </para>
      </listitem>
     </varlistentry>
Index: en/reference/ps/functions/ps-translate.xml
===================================================================
RCS file: /repository/phpdoc/en/reference/ps/functions/ps-translate.xml,v
retrieving revision 1.3
diff -u -r1.3 ps-translate.xml
--- en/reference/ps/functions/ps-translate.xml	3 Mar 2006 12:49:53 -0000	1.3
+++ en/reference/ps/functions/ps-translate.xml	4 Mar 2006 01:47:19 -0000
@@ -69,12 +69,12 @@
 <![CDATA[
 <?php
 function rectangle($ps) {
-	ps_moveto($ps, 0, 0);
-	ps_lineto($ps, 0, 50);
-	ps_lineto($ps, 50, 50);
-	ps_lineto($ps, 50, 0);
-	ps_lineto($ps, 0, 0);
-	ps_stroke($ps);
+    ps_moveto($ps, 0, 0);
+    ps_lineto($ps, 0, 50);
+    ps_lineto($ps, 50, 50);
+    ps_lineto($ps, 50, 0);
+    ps_lineto($ps, 0, 0);
+    ps_stroke($ps);
 }
 
 $ps = ps_new();
