fix typos, by takagi

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@208810 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Nuno Lopes 2006-03-06 22:48:02 +00:00
parent 85e7c70a63
commit 73e7c687de
6 changed files with 23 additions and 23 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/ps.xml, last change in rev 1.12 -->
<refentry id="function.ps-rotate">
<refnamediv>
@ -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();

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/ps.xml, last change in rev 1.12 -->
<refentry id="function.ps-set-info">
<refnamediv>
@ -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>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/ps.xml, last change in rev 1.12 -->
<refentry id="function.ps-setmiterlimit">
<refnamediv>
@ -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>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/ps.xml, last change in rev 1.12 -->
<refentry id="function.ps-setpolydash">
<refnamediv>
@ -84,7 +84,7 @@ ps_delete($ps);
]]>
</programlisting>
<para>
This examples draws a line with a 10 and 1 points long line, and
This example draws a line with a 10 and 2 points long line, and
gaps of 5 points inbetween.
</para>
</example>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/ps.xml, last change in rev -->
<refentry id="function.ps-stringwidth">
<refnamediv>
@ -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>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/ps.xml, last change in rev 1.12 -->
<refentry id="function.ps-translate">
<refnamediv>
@ -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();