]> granicus.if.org Git - php/commitdiff
Typos found by Petras Kudaras.
authorMarcus Boerger <helly@php.net>
Mon, 22 Dec 2003 23:45:53 +0000 (23:45 +0000)
committerMarcus Boerger <helly@php.net>
Mon, 22 Dec 2003 23:45:53 +0000 (23:45 +0000)
README.SUBMITTING_PATCH
ext/exif/tests/exif005.phpt
ext/standard/tests/strings/str_shuffle.phpt
ext/standard/tests/strings/strtr.phpt

index 5b9516e253d02d3033bdd07f288637c57c8503f4..04847d79c24ba590e795bfe3b2801191488e1d84 100644 (file)
@@ -90,7 +90,7 @@ Please add the prefix "[PATCH]" to your email subject and make sure
 to include the patch as a MIME attachment even if it is short. 
 
 NOTE: only MIME attachments of type 'text/*' are accepted. The
-      easiest way to acclomplish this, is to make the extension
+      easiest way to accomplish this, is to make the extension
       '.txt'.
 
 Test scripts should be included in the same email.
@@ -100,7 +100,7 @@ Finally, add the bug Id(s) which can be closed by your patch, if any.
 
 
 What happens after you submit your patch
--------------------------------------- 
+---------------------------------------- 
 If your patch is easy to review and has obviously no side-effects,
 it might take up to a few hours until someone commits it.
 
index c1804e0b50a924c165b77995e080579f342a072e..e34e3a04217465c929d46a0decc18dc8db010022 100644 (file)
@@ -7,7 +7,7 @@ output_handler=
 zlib.output_compression=0
 --FILE--
 <?php
-/* Do not change this test it is a REATME.TESTING example.
+/* Do not change this test it is a README.TESTING example.
  * test5.jpg is a 1*1 image that contains an Exif section with ifd = 00000009h
  */
 $image  = exif_read_data(dirname(__FILE__).'/test5.jpg','',true,false);
index cf6a07304bc9ca0d3f9ca8201d56e073d69bf48e..32f387287b02f10f7f81698577b849263357742d 100644 (file)
@@ -2,7 +2,7 @@
 Testing str_shuffle.
 --FILE--
 <?php
-/* Do not change this test it is a REATME.TESTING example. */
+/* Do not change this test it is a README.TESTING example. */
 $s = '123';
 var_dump(str_shuffle($s));
 var_dump($s);
index 7d9bd31d14e16246dc2482f45e25f503863aa557..80ed722b8e4c323fca0b0812c498147f2cde37d6 100644 (file)
@@ -2,7 +2,7 @@
 strtr() function
 --FILE--
 <?php
-/* Do not change this test it is a REATME.TESTING example. */
+/* Do not change this test it is a README.TESTING example. */
 $trans = array("hello"=>"hi", "hi"=>"hello", "a"=>"A", "world"=>"planet");
 var_dump(strtr("# hi all, I said hello world! #", $trans));
 ?>