Explorar el Código

[DOCUMENTATION] English: manual fixes

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@19689 44c647ce-9c0f-0410-b52a-842ac1e357ba
mikaelkael hace 16 años
padre
commit
23950ff8de

+ 1 - 1
documentation/manual/en/module_specs/Zend_Application-AvailableResources-Log.xml

@@ -6,7 +6,7 @@
     <para>
     <para>
         <classname>Zend_Application_Resource_Log</classname> to instantiate a
         <classname>Zend_Application_Resource_Log</classname> to instantiate a
         <classname>Zend_Log</classname> instance with an arbitrary number of log writers.
         <classname>Zend_Log</classname> instance with an arbitrary number of log writers.
-        Configuration will be passed to the <classname>Zend_Log::factory()</classname> method,
+        Configuration will be passed to the <methodname>Zend_Log::factory()</methodname> method,
         allowing you to specify combinations of log writers and filters. The log instance may then
         allowing you to specify combinations of log writers and filters. The log instance may then
         be retrieved from the bootstrap later in order to log events.
         be retrieved from the bootstrap later in order to log events.
     </para>
     </para>

+ 4 - 5
documentation/manual/en/module_specs/Zend_Application-CoreFunctionality-Bootstrap_Bootstrap.xml

@@ -14,7 +14,6 @@
         front controller.
         front controller.
     </para>
     </para>
 
 
-
     <para>
     <para>
         In most cases, you will want to extend this class for your bootstrapping
         In most cases, you will want to extend this class for your bootstrapping
         needs, or simply use this class and provide a list of resource plugins
         needs, or simply use this class and provide a list of resource plugins
@@ -31,7 +30,7 @@
                 linkend="zend.loader.autoloader-resource.module">Zend_Application_Module_Autoloader</link>
                 linkend="zend.loader.autoloader-resource.module">Zend_Application_Module_Autoloader</link>
             object, providing the requested namespace and the bootstrap's directory as arguments.
             object, providing the requested namespace and the bootstrap's directory as arguments.
             You may enable this functionality by providing a namespace to the "appnamespace"
             You may enable this functionality by providing a namespace to the "appnamespace"
-            configuration option. As an INI example:
+            configuration option. As an <acronym>INI</acronym> example:
         </para>
         </para>
 
 
         <programlisting language="ini"><![CDATA[
         <programlisting language="ini"><![CDATA[
@@ -39,7 +38,7 @@ appnamespace = "Application"
 ]]></programlisting>
 ]]></programlisting>
 
 
         <para>
         <para>
-            Or in XML:
+            Or in <acronym>XML</acronym>:
         </para>
         </para>
 
 
         <programlisting language="xml"><![CDATA[
         <programlisting language="xml"><![CDATA[
@@ -52,8 +51,8 @@ appnamespace = "Application"
         </para>
         </para>
 
 
         <para>
         <para>
-            Alternately, you can simply define the <varname>$_appNamespace</varname> property of your
-            bootstrap class with the appropriate value:
+            Alternately, you can simply define the <varname>$_appNamespace</varname> property of
+            your bootstrap class with the appropriate value:
         </para>
         </para>
 
 
         <programlisting language="php"><![CDATA[
         <programlisting language="php"><![CDATA[