From d8597e2095292a3855caee87c9a11f5fbc7bbb34 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 18 Jan 2012 09:35:04 -0600 Subject: [PATCH] fix comment in bundler. --- laravel/cli/tasks/bundle/bundler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/cli/tasks/bundle/bundler.php b/laravel/cli/tasks/bundle/bundler.php index 67a209e8..1d38f73a 100644 --- a/laravel/cli/tasks/bundle/bundler.php +++ b/laravel/cli/tasks/bundle/bundler.php @@ -65,7 +65,7 @@ public function publish($bundles) { // If no bundles are passed to the command, we'll just gather all // of the installed bundle names and publish the assets for each - // for each one of the bundles to the public directory. + // of the bundles to the public directory. if (count($bundles) == 0) $bundles = Bundle::all(); $publisher = IoC::resolve('bundle.publisher');