diff options
author | Veres Lajos <vlajos@gmail.com> | 2014-08-12 22:00:23 +0100 |
---|---|---|
committer | Lior Kaplan <kaplanlior@gmail.com> | 2014-08-17 15:44:02 +0300 |
commit | 3f42f2f5d1c8026b6e1d21b91857a08d918c28c8 (patch) | |
tree | 9d007c39909e160f3ba313545de32e0dba73cfa3 /scripts | |
parent | 0407bdf252004cce08e383bc0f4aa0bbc69c9a25 (diff) | |
download | php-git-3f42f2f5d1c8026b6e1d21b91857a08d918c28c8.tar.gz |
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 |