Browse Source

[DOCUMENTATION] English: manual fix

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@20077 44c647ce-9c0f-0410-b52a-842ac1e357ba
mikaelkael 16 years ago
parent
commit
f3f67ad871

+ 5 - 5
documentation/manual/en/module_specs/Zend_Application-AvailableResources-CacheManager.xml

@@ -21,10 +21,10 @@
         <para>
             Below is a sample <acronym>INI</acronym> file showing how
             <classname>Zend_Cache_Manager</classname> may be configured. The format
-            is the Cachemanager resource prefix (resources.cachemanager) followed
-            be the name to assign to an option cache template/bundle (e.g.
-            resources.cachemanager.database) and finally followed by a typical
-            <classname>Zend_Cache</classname> option.
+            is the Cachemanager resource prefix (<property>resources.cachemanager</property>)
+            followed be the name to assign to an option cache template or bundle (e.g.
+            <property>resources.cachemanager.database</property>) and finally followed by a
+            typical <classname>Zend_Cache</classname> option.
         </para>
 
         <programlisting language="ini"><![CDATA[
@@ -38,7 +38,7 @@ resources.cachemanager.database.backend.options.cache_dir = "/path/to/cache"
         <para>
             Actually retrieving this cache from the Cache Manager is as simple as
             accessing an instance of the Manager and calling
-            <methodname>$cacheManager->getCache('database');</methodname>.
+            <command>$cacheManager->getCache('database');</command>.
         </para>
     </example>
 </sect2>

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

@@ -127,7 +127,7 @@ resources.locale.default = "nl_NL"
         </para>
 
         <para>
-            In this case this single locale will be used and the the automatic detection is turned
+            In this case this single locale will be used and the automatic detection is turned
             off.
         </para>
 

+ 8 - 6
documentation/manual/en/module_specs/Zend_Application-AvailableResources-Mail.xml

@@ -8,12 +8,14 @@
         to instantiate a transport for <classname>Zend_Mail</classname> or set
         the default name and address, as well as the default replyto- name and address.
     </para>
-    
-    <para>When instantiating a transport, it's registered automatically to
-        <classname>Zend_Mail</classname>. Though, by setting the transport.register
-        directive to false, this behaviour does no more occur.
+
+    <para>
+        When instantiating a transport, it's registered automatically to
+        <classname>Zend_Mail</classname>. Though, by setting the
+        <property>transport.register</property> directive to false, this behaviour
+        does no more occur.
     </para>
-    
+
     <example id="zend.application.available-resources.mail.configExample">
         <title>Sample Mail Resource Configuration</title>
 
@@ -33,7 +35,7 @@ resources.mail.transport.register = true ; True by default
 resources.mail.defaultFrom.email = john@example.com
 resources.mail.defaultFrom.name = "John Doe"
 resources.mail.defaultReplyTo.email = Jane@example.com
-resources.mail.defaultReplyTo.name = "Jane Doe"        
+resources.mail.defaultReplyTo.name = "Jane Doe"
 ]]></programlisting>
 
     </example>