From 46d95664a0cb825bbe07ed010eb2edc7a3c88dfc Mon Sep 17 00:00:00 2001 From: Franck Allimant Date: Tue, 19 Nov 2013 15:35:15 +0100 Subject: [PATCH] Fixed typo --- core/lib/Thelia/Command/CacheClear.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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)); } }