Bläddra i källkod

[MANUAL] English:

- some manual fixes

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@22389 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 15 år sedan
förälder
incheckning
335e60062e

+ 2 - 2
documentation/manual/en/module_specs/Zend_Filter-Alnum.xml

@@ -75,8 +75,8 @@ $return = $filter->filter('This is (my) content: 123');
 
         <para>
             To change <property>allowWhiteSpace</property> afterwards you can use
-            <methodname>setAllowWhiteSpace</methodname> and
-            <methodname>getAllowWhiteSpace</methodname>.
+            <methodname>setAllowWhiteSpace()</methodname> and
+            <methodname>getAllowWhiteSpace()</methodname>.
         </para>
     </sect3>
 </sect2>

+ 2 - 2
documentation/manual/en/module_specs/Zend_Filter-Boolean.xml

@@ -13,8 +13,8 @@
 
         <para>
             By default, this filter works by casting the input to a <constant>BOOLEAN</constant>
-            value; in other words, it operates in a similar fashion to calling <command>(boolean)
-            $value</command>.
+            value; in other words, it operates in a similar fashion to calling
+            <command>(boolean) $value</command>.
         </para>
 
         <programlisting language="php"><![CDATA[

+ 2 - 2
documentation/manual/en/module_specs/Zend_Filter-Dir.xml

@@ -30,7 +30,7 @@ print $filter->filter('/etc/passwd');
 ]]></programlisting>
 
         <para>
-            This returns "/etc".
+            This returns "<filename>/etc</filename>".
         </para>
 
         <programlisting language="php"><![CDATA[
@@ -40,7 +40,7 @@ print $filter->filter('C:/Temp/x');
 ]]></programlisting>
 
         <para>
-            This returns "C:/Temp".
+            This returns "<filename>C:/Temp</filename>".
         </para>
     </sect3>
 </sect2>

+ 1 - 1
documentation/manual/en/module_specs/Zend_Filter.xml

@@ -110,7 +110,7 @@ echo Zend_Filter::filterStatic('"',
         <para>
             Also, the <classname>Zend_Filter_Input</classname> class allows you to instantiate and
             run multiple filter and validator classes on demand to process
-            sets of input data. See <xref linkend="zend.filter.input" />.
+            sets of input data. See <link linkend="zend.filter.input">Zend_Filter_Input</link>.
         </para>
 
         <sect3 id="zend.filter.introduction.static.namespaces">