diff options
author | Lior Kaplan <kaplanlior@gmail.com> | 2014-08-17 15:51:15 +0300 |
---|---|---|
committer | Lior Kaplan <kaplanlior@gmail.com> | 2014-08-17 15:51:15 +0300 |
commit | 56d02d564e946a03e397297d5d5ded112eefd928 (patch) | |
tree | 7615f37956b630310fcfc9ba083174e58154f48a /scripts | |
parent | c6d9bf294681486e7d0ae67b099c0f45e88b35ac (diff) | |
parent | be2128c8050fd8d22604acb0e225891551c81c8c (diff) | |
download | php-git-56d02d564e946a03e397297d5d5ded112eefd928.tar.gz |
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5:
typofixes
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/dev/find_tested.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dev/find_tested.php b/scripts/dev/find_tested.php index f95c46251c..e841e2e959 100644 --- a/scripts/dev/find_tested.php +++ b/scripts/dev/find_tested.php @@ -88,7 +88,7 @@ function mark_methods_as_tested($method_info, $phpt_files) { foreach($tested_functions as $tested_function) { - // go through method info array marking this funtion as tested + // go through method info array marking this function as tested foreach($method_info as &$current_method_record) { if (strcasecmp($tested_function, $current_method_record[METHOD_NAME]) == 0) { // matched the method name |