diff options
| -rw-r--r-- | pear/PEAR/Common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/PEAR/Common.php b/pear/PEAR/Common.php index 96d1ebfb50..51697e5875 100644 --- a/pear/PEAR/Common.php +++ b/pear/PEAR/Common.php @@ -1087,7 +1087,7 @@ class PEAR_Common extends PEAR $i = 1; foreach ($info['deps'] as $d) { if (empty($d['type'])) { - $errors[] = "depenency $i: missing type"; + $errors[] = "dependency $i: missing type"; } elseif (!in_array($d['type'], $_PEAR_Common_dependency_types)) { $errors[] = "dependency $i: invalid type, should be one of: ".implode(' ', $_PEAR_Common_depenency_types); } |
