Browse Source

[DOCUMENTATION] English:
- fix compilation errors

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@17097 44c647ce-9c0f-0410-b52a-842ac1e357ba

mikaelkael 16 năm trước cách đây
mục cha
commit
dc1c7cccb2

+ 3 - 3
documentation/manual/en/module_specs/Zend_Http_Client.xml

@@ -15,7 +15,7 @@
         <title>Using Zend_Http_Client</title>
         <para>
             The class constructor optionally accepts a URL as its first parameter
-            (can be either a string or a Zend_Uri_Http object), and an array or 
+            (can be either a string or a Zend_Uri_Http object), and an array or
             Zend_Config object containing configuration options. Both can be left out,
             and set later using the setUri() and setConfig() methods.
             <example id="zend.http.client.introduction.example-1">
@@ -31,7 +31,7 @@ $client->setUri('http://example.org');
 $client->setConfig(array(
     'maxredirects' => 0,
     'timeout'      => 30));
-    
+
 // You can also use a Zend_Config object to set the client's configuration
 $config = new Zend_Config_Ini('httpclient.ini, 'secure');
 $client->setConfig($config);
@@ -53,7 +53,7 @@ $client->setConfig($config);
         <title>Configuration Parameters</title>
         <para>
             The constructor and setConfig() method accept an associative array
-            of configuration parameters, or a Zend_Config object. Setting these 
+            of configuration parameters, or a Zend_Config object. Setting these
             parameters is optional, as they all have default values.
             <table id="zend.http.client.configuration.table">
                 <title>Zend_Http_Client configuration parameters</title>

+ 1 - 1
documentation/manual/en/module_specs/Zend_Locale-Migration.xml

@@ -91,7 +91,7 @@
                 <methodname>disableCache()</methodname> method.
             </para>
 
-            <example id="zend.locale.migration.fromonesixtooneseven.example">
+            <example id="zend.locale.migration.fromoneseventooneeight.example">
                 <title>Disabling default caching</title>
 
                 <programlisting language="php"><![CDATA[

+ 5 - 5
documentation/manual/en/module_specs/Zend_Translate-Adapters.xml

@@ -201,12 +201,12 @@
                 <title>Regression in PHP 5.3</title>
 
                 <para>
-                    Prior to PHP 5.3, <functionname>parse_ini_file()</functionname> and 
-                    <functionname>parse_ini_string()</functionname> handled non-ASCII characters 
+                    Prior to PHP 5.3, <function>parse_ini_file()</function> and
+                    <function>parse_ini_string()</function> handled non-ASCII characters
                     within INI option keys worked without an issue. However, starting with PHP 5.3,
-                    any such keys will now be silently dropped in the returned array from either 
-                    function. If you had keys utilizing UTF-8 or Latin-1 characters, you may find 
-                    your translations no longer work when using the INI adapter. If this is the 
+                    any such keys will now be silently dropped in the returned array from either
+                    function. If you had keys utilizing UTF-8 or Latin-1 characters, you may find
+                    your translations no longer work when using the INI adapter. If this is the
                     case, we recommend utilizing a different adapter.
                 </para>
             </warning>