Browse Source

fix comment in bundler.

Taylor Otwell 13 years ago
parent
commit
d8597e2095
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/cli/tasks/bundle/bundler.php

+ 1 - 1
laravel/cli/tasks/bundle/bundler.php

@@ -65,7 +65,7 @@ class Bundler extends Task {
 	{
 		// 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');