andrei          Tue Jul 11 23:05:34 2006 UTC

  Modified files:              
    /php-src    README.UNICODE 
  Log:
  Typos
  
  
http://cvs.php.net/viewvc.cgi/php-src/README.UNICODE?r1=1.3&r2=1.4&diff_format=u
Index: php-src/README.UNICODE
diff -u php-src/README.UNICODE:1.3 php-src/README.UNICODE:1.4
--- php-src/README.UNICODE:1.3  Tue Jul 11 22:59:19 2006
+++ php-src/README.UNICODE      Tue Jul 11 23:05:33 2006
@@ -476,7 +476,7 @@
 This forces the input parameter to be a string, and its value and length are
 stored in the variables specified by the caller.
 
-There are now three new specifiers: 't', 'u', and 'T'.
+There are now five new specifiers: 'u', 't', 'T', 'U', and 'S'.
 
   't' specifier
   -------------
@@ -517,7 +517,7 @@
     if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "u", &str, &len) == 
FAILURE) {
         return;
     }
-    /* process UTF-16 data */
+    /* process Unicode string */
 
     
   'T' specifier
@@ -544,7 +544,7 @@
     if (type1 == IS_UNICODE) {
        /* process as Unicode, str2 is guaranteed to be Unicode as well */
     } else {
-       /* process as native string, str2 is guaranteed to be the same */
+       /* process as binary string, str2 is guaranteed to be the same */
     }
 
 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to