Просмотр исходного кода

Corrected grammatical errors. Improved readability. Resolves ZF-5455.

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@18834 44c647ce-9c0f-0410-b52a-842ac1e357ba
jordanryanmoore 16 лет назад
Родитель
Сommit
8018cc67ba
1 измененных файлов с 7 добавлено и 7 удалено
  1. 7 7
      documentation/manual/en/module_specs/Zend_Debug.xml

+ 7 - 7
documentation/manual/en/module_specs/Zend_Debug.xml

@@ -7,14 +7,14 @@
     <para>
     <para>
         The static method <methodname>Zend_Debug::dump()</methodname> prints or returns
         The static method <methodname>Zend_Debug::dump()</methodname> prints or returns
         information about an expression. This simple technique of debugging is
         information about an expression. This simple technique of debugging is
-        common, because it is easy to use in an ad hoc fashion, and requires no
+        common because it is easy to use in an ad hoc fashion and requires no
         initialization, special tools, or debugging environment.
         initialization, special tools, or debugging environment.
     </para>
     </para>
 
 
     <example id="zend.debug.dumping.example">
     <example id="zend.debug.dumping.example">
         <title>Example of dump() method</title>
         <title>Example of dump() method</title>
         <programlisting language="php"><![CDATA[
         <programlisting language="php"><![CDATA[
-Zend_Debug::dump($var, $label=null, $echo=true);
+Zend_Debug::dump($var, $label = null, $echo = true);
 ]]></programlisting>
 ]]></programlisting>
     </example>
     </example>
 
 
@@ -40,7 +40,7 @@ Zend_Debug::dump($var, $label=null, $echo=true);
     </para>
     </para>
 
 
     <para>
     <para>
-        It may be helpful to understand that internally,
+        It may be helpful to understand that
         <methodname>Zend_Debug::dump()</methodname> method wraps the <acronym>PHP</acronym> function
         <methodname>Zend_Debug::dump()</methodname> method wraps the <acronym>PHP</acronym> function
         <ulink url="http://php.net/var_dump"><methodname>var_dump()</methodname></ulink>.
         <ulink url="http://php.net/var_dump"><methodname>var_dump()</methodname></ulink>.
         If the output stream is detected as a web presentation,
         If the output stream is detected as a web presentation,
@@ -58,10 +58,10 @@ Zend_Debug::dump($var, $label=null, $echo=true);
         </para>
         </para>
         <para>
         <para>
             Also consider the <link linkend="zend.log.overview">Zend_Log</link>
             Also consider the <link linkend="zend.log.overview">Zend_Log</link>
-            component when writing more permanent debugging code.
-            For example, you can use the <constant>DEBUG</constant> log level and the
-            Stream log writer, to output the string returned by
-            <methodname>Zend_Debug::dump()</methodname>.
+            component when writing more permanent debugging code. For example,
+            you can use the <constant>DEBUG</constant> log level and the
+            <link linkend="zend.log.writers.stream">stream log writer</link> to
+            output the string returned by <methodname>Zend_Debug::dump()</methodname>.
         </para>
         </para>
     </tip>
     </tip>