diff --git a/core/lib/Thelia/Command/CacheClear.php b/core/lib/Thelia/Command/CacheClear.php
index 1d4e7919c..3b56cbf00 100755
--- a/core/lib/Thelia/Command/CacheClear.php
+++ b/core/lib/Thelia/Command/CacheClear.php
@@ -52,7 +52,7 @@ class CacheClear extends ContainerAwareCommand
"without-assets",
null,
InputOption::VALUE_NONE,
- "remove cache assets"
+ "do not clear the assets cache in the web space"
)
;
}
@@ -82,17 +82,17 @@ class CacheClear extends ContainerAwareCommand
} catch (\UnexpectedValueException $e) {
// throws same exception code for does not exist and permission denied ...
if (!file_exists($dir)) {
- $output->writeln(sprintf("%s cache dir already clear", $dir));
+ $output->writeln(sprintf("%s cache dir already cleared", $dir));
return;
}
throw $e;
} catch (IOException $e) {
- $output->writeln(sprintf("Error during clearing cache : %s", $e->getMessage()));
+ $output->writeln(sprintf("Error during clearing of cache : %s", $e->getMessage()));
}
- $output->writeln(sprintf("%s cache dir cleared successfully", $dir));
+ $output->writeln(sprintf("%s cache directory cleared successfully", $dir));
}
}