Sfoglia il codice sorgente

[DOCUMENTATION] English: fix compilation error

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@22256 44c647ce-9c0f-0410-b52a-842ac1e357ba
mikaelkael 15 anni fa
parent
commit
3e4ae39f18

+ 1 - 1
documentation/manual/en/module_specs/Zend_Dojo-View-Helpers.xml

@@ -349,7 +349,7 @@ $view->addHelperPath('Zend/Dojo/View/Helper', 'Zend_Dojo_View_Helper');
             <listitem>
                 <para>
                     <command>captureStart($id, array $params = array(), array $attribs =
-                        array())</command>: begin capturing content to include in a container.
+                        array());</command>: begin capturing content to include in a container.
                     <varname>$params</varname> refers to the dijit params to use with
                     the container, while <varname>$attribs</varname> refer to any
                     general <acronym>HTML</acronym> attributes to use.

+ 4 - 6
documentation/manual/en/module_specs/Zend_Filter-Digits.xml

@@ -7,7 +7,7 @@
         Returns the string <varname>$value</varname>, removing all but digits.
     </para>
 
-     <sect3 id="zend.filter.set.basename.options">
+     <sect3 id="zend.filter.set.digits.options">
         <title>Supported options for Zend_Filter_Digits</title>
 
         <para>
@@ -15,27 +15,25 @@
         </para>
     </sect3>
 
-     <sect3 id="zend.filter.set.basename.basic">
+     <sect3 id="zend.filter.set.digits.basic">
         <title>Basic usage</title>
 
         <para>
             A basic example of usage is below:
         </para>
 
-    <programlisting language="php"><![CDATA[
+        <programlisting language="php"><![CDATA[
 $filter = new Zend_Filter_Digits();
 
 print $filter->filter('October 2009');
 // returns "2009"
 ]]></programlisting>
 
-    <programlisting language="php"><![CDATA[
+        <programlisting language="php"><![CDATA[
 $filter = new Zend_Filter_Digits();
 
 print $filter->filter('HTML 5 for Dummies');
 // returns "5"
 ]]></programlisting>
-
     </sect3>
-
 </sect2>