Ver código fonte

[DOCUMENTATION]typos and add commas

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@17891 44c647ce-9c0f-0410-b52a-842ac1e357ba
yoshida@zend.co.jp 16 anos atrás
pai
commit
975a5e9b1a

+ 3 - 3
documentation/manual/en/module_specs/Zend_Filter-StringToLower.xml

@@ -16,8 +16,8 @@ print $filter->filter('SAMPLE');
 
     <para>
         Per default it will only handle characters from the actual locale of your
-        server. Characters from other charsets would be ignored. Still it's
-        possible to also to lowercase them when the mbstring extension is available
+        server. Characters from other charsets would be ignored. Still, it's
+        possible to also lowercase them when the mbstring extension is available
         in your environment. Simply set the wished encoding when initiating the
         <classname>StringToLower</classname> filter. Or use the
         <methodname>setEncoding()</methodname> method to change the encoding afterwards.
@@ -27,7 +27,7 @@ print $filter->filter('SAMPLE');
 // using UTF-8
 $filter = new Zend_Filter_StringToLower('UTF-8');
 
-// or give an array which can be usefull when using a configuration
+// or give an array which can be useful when using a configuration
 $filter = new Zend_Filter_StringToLower(array('encoding' => 'UTF-8'));
 
 // or do this afterwards

+ 2 - 2
documentation/manual/en/module_specs/Zend_Filter-StringToUpper.xml

@@ -15,9 +15,9 @@ print $filter->filter('Sample');
 ]]></programlisting>
 
     <para>
-        Like the <classname>StringToLower</classname> filter this filter handles
+        Like the <classname>StringToLower</classname> filter, this filter handles
         only characters from the actual locale of your server. Using different
-        charactersets works the same as with <classname>StringToLower</classname>.
+        character sets works the same as with <classname>StringToLower</classname>.
     </para>
 
     <programlisting language="php"><![CDATA[