]> granicus.if.org Git - php/commitdiff
Typos
authorAndrei Zmievski <andrei@php.net>
Tue, 11 Jul 2006 23:05:33 +0000 (23:05 +0000)
committerAndrei Zmievski <andrei@php.net>
Tue, 11 Jul 2006 23:05:33 +0000 (23:05 +0000)
README.UNICODE

index f17a4fa0bb9682a339ae94740a4b16a772a2d5e6..13b3da09cc1ac6147feccc34b06acb23fad88cb0 100644 (file)
@@ -476,7 +476,7 @@ obtain the parameters passed to them by the user. For example:
 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 @@ There are now three new specifiers: 't', 'u', and 'T'.
     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 @@ There are now three new specifiers: 't', 'u', and 'T'.
     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 */
     }