diff options
author | Marcus Boerger <helly@php.net> | 2003-12-22 23:45:53 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-12-22 23:45:53 +0000 |
commit | 8a072165f573e8023e4473d7da6c2cdb1e088b7f (patch) | |
tree | cfbb25d37d68cf25c85959cc9e787bae2a751051 | |
parent | 3aad8267a8df034055132573401966be4cb6c59b (diff) | |
download | php-git-8a072165f573e8023e4473d7da6c2cdb1e088b7f.tar.gz |
Typos found by Petras Kudaras.
-rw-r--r-- | README.SUBMITTING_PATCH | 4 | ||||
-rw-r--r-- | ext/exif/tests/exif005.phpt | 2 | ||||
-rw-r--r-- | ext/standard/tests/strings/str_shuffle.phpt | 2 | ||||
-rw-r--r-- | ext/standard/tests/strings/strtr.phpt | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/README.SUBMITTING_PATCH b/README.SUBMITTING_PATCH index 5b9516e253..04847d79c2 100644 --- a/README.SUBMITTING_PATCH +++ b/README.SUBMITTING_PATCH @@ -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. diff --git a/ext/exif/tests/exif005.phpt b/ext/exif/tests/exif005.phpt index c1804e0b50..e34e3a0421 100644 --- a/ext/exif/tests/exif005.phpt +++ b/ext/exif/tests/exif005.phpt @@ -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); diff --git a/ext/standard/tests/strings/str_shuffle.phpt b/ext/standard/tests/strings/str_shuffle.phpt index cf6a07304b..32f387287b 100644 --- a/ext/standard/tests/strings/str_shuffle.phpt +++ b/ext/standard/tests/strings/str_shuffle.phpt @@ -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); diff --git a/ext/standard/tests/strings/strtr.phpt b/ext/standard/tests/strings/strtr.phpt index 7d9bd31d14..80ed722b8e 100644 --- a/ext/standard/tests/strings/strtr.phpt +++ b/ext/standard/tests/strings/strtr.phpt @@ -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)); ?> |