]> granicus.if.org Git - php/commitdiff
"of cause" should have been "of course" but is not needed anyway
authorMarcus Boerger <helly@php.net>
Tue, 10 Dec 2002 11:21:30 +0000 (11:21 +0000)
committerMarcus Boerger <helly@php.net>
Tue, 10 Dec 2002 11:21:30 +0000 (11:21 +0000)
#noticed by Zeev

tests/classes/abstract.phpt
tests/classes/abstract_class.phpt
tests/classes/static_mix_1.phpt
tests/classes/static_mix_2.phpt

index 728f2cceda40309df27c73fbf38265252b262643..4a2cfbaad2271e0ab152a1fb13f0a996aa770b2e 100644 (file)
@@ -22,7 +22,7 @@ $t = new pass();
 $t->show();
 $t->error();
 
-echo "Done\n"; // shouldn't be displayed of cause
+echo "Done\n"; // shouldn't be displayed
 ?>
 --EXPECTF--
 Call to function show()
index 4c1c453c2d6f25cffa7e54ba0d847e474be2bd8e..df123e038b365a01b1007bd55b80c407e67853af 100644 (file)
@@ -21,7 +21,7 @@ $t2->show();
 $t = new fail();
 $t->show();
 
-echo "Done\n"; // shouldn't be displayed of cause
+echo "Done\n"; // shouldn't be displayed
 ?>
 --EXPECTF--
 Call to function show()
index 729b83384fda5ed133365c34958479a5ba8dfc9e..06e78826947103af3537a19b5502e0538fa64c70 100644 (file)
@@ -20,7 +20,7 @@ class fail extends pass {
 pass::show();
 fail::show();
 
-echo "Done\n"; // shouldn't be displayed of cause
+echo "Done\n"; // shouldn't be displayed
 ?>                                                            
 --EXPECTF--
 Fatal error: Cannot make static method pass::show() non static in class fail in %s on line %d
\ No newline at end of file
index c6e386dc97d81cf049a5132f3ae622d3e3113098..30522713071c18369ef9da92e8c4397de3511167 100644 (file)
@@ -21,7 +21,7 @@ $t = new pass();
 $t->show();
 fail::show();
 
-echo "Done\n"; // shouldn't be displayed of cause
+echo "Done\n"; // shouldn't be displayed
 ?>
 --EXPECTF--
 Fatal error: Cannot make non static method pass::show() static in class fail in %s on line %d
\ No newline at end of file