diff --git a/src/Audit/MissingModules.php b/src/Audit/MissingModules.php index 06c7c26..95c251d 100644 --- a/src/Audit/MissingModules.php +++ b/src/Audit/MissingModules.php @@ -50,7 +50,7 @@ public function audit(Sandbox $sandbox) { }); $sandbox->setParameter('messages', array_values(array_map(function ($row) { - return "Cannot file {$row['type']} `{$row['name']}`. Expected to be in {$row['filename']}."; + return "Cannot find {$row['type']} `{$row['name']}`. Expected to be in {$row['filename']}."; }, $rows))); print_r($sandbox->getParameter('messages'));