diff options
author | Pierrick Charron <pierrick@php.net> | 2011-04-03 21:46:52 +0000 |
---|---|---|
committer | Pierrick Charron <pierrick@php.net> | 2011-04-03 21:46:52 +0000 |
commit | 1368364469571507b56358e3fe210aaaaea35a07 (patch) | |
tree | b41fc183aa432b16b67a1096881da00cc0b35fd1 /scripts/dev | |
parent | 9e05a9ad1310018a6f5797c7e32ae0d0cbd9cb69 (diff) | |
download | php-git-1368364469571507b56358e3fe210aaaaea35a07.tar.gz |
Fix common typos in the source code (Reported in Bug #54065)
# External libraries were excluded
# Thanks eitan at eitanadler dot com for the first patch :)
Diffstat (limited to 'scripts/dev')
3 files changed, 7 insertions, 7 deletions
diff --git a/scripts/dev/generate-phpt/src/gtTestSubject.php b/scripts/dev/generate-phpt/src/gtTestSubject.php index 9be1e74509..ccf3caad93 100644 --- a/scripts/dev/generate-phpt/src/gtTestSubject.php +++ b/scripts/dev/generate-phpt/src/gtTestSubject.php @@ -128,7 +128,7 @@ abstract class gtTestSubject { /** - * Returns the argument list with teh greatest possible number of arguments. + * Returns the argument list with the greatest possible number of arguments. * * @return string */ @@ -163,4 +163,4 @@ abstract class gtTestSubject { return $this->initialisationStatements; } } -?>
\ No newline at end of file +?> diff --git a/scripts/dev/generate-phpt/src/setup/preconditions/gtIsValidMethod.php b/scripts/dev/generate-phpt/src/setup/preconditions/gtIsValidMethod.php index 5f16d98f30..a52988aa6d 100644 --- a/scripts/dev/generate-phpt/src/setup/preconditions/gtIsValidMethod.php +++ b/scripts/dev/generate-phpt/src/setup/preconditions/gtIsValidMethod.php @@ -1,7 +1,7 @@ <?php /** - * Check that teh method name is valid + * Check that the method name is valid * */ class gtIsValidMethod extends gtPreCondition { @@ -25,4 +25,4 @@ class gtIsValidMethod extends gtPreCondition { return gtText::get('unknownMethod'); } } -?>
\ No newline at end of file +?> diff --git a/scripts/dev/generate-phpt/src/testcase/gtTestCase.php b/scripts/dev/generate-phpt/src/testcase/gtTestCase.php index cb67aa345d..cc5e19a5ae 100644 --- a/scripts/dev/generate-phpt/src/testcase/gtTestCase.php +++ b/scripts/dev/generate-phpt/src/testcase/gtTestCase.php @@ -23,7 +23,7 @@ abstract class gtTestCase { /** - * Object containing teh ooptional sections that may be added to the test case + * Object containing the optional sections that may be added to the test case * * @var gtOptionalSections */ @@ -140,7 +140,7 @@ abstract class gtTestCase { /** - * Add FILE section closing tag to teh test case + * Add FILE section closing tag to the test case * */ public function fileClosing() { @@ -227,4 +227,4 @@ abstract class gtTestCase { return $this->optionalSections; } } -?>
\ No newline at end of file +?> |