Browse Source

cleaning up view code.

Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
Taylor Otwell 13 years ago
parent
commit
2a02b9f6ac
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/view.php

+ 2 - 2
laravel/view.php

@@ -201,7 +201,7 @@ class View implements ArrayAccess {
 	{
 		// To allow bundles or other pieces of the application to modify the
 		// view before it is rendered, we'll fire an event, passing in the
-		// view instance so it can modified by the composer.
+		// view instance so it can modified.
 		$composer = "laravel.composing: {$this->view}";
 
 		Event::fire($composer, array($this));
@@ -232,7 +232,7 @@ class View implements ArrayAccess {
 
 		// We'll include the view contents for parsing within a catcher
 		// so we can avoid any WSOD errors. If an exception occurs we
-		// will just throw it back out to the exception handler.
+		// will throw it out to the exception handler.
 		try
 		{
 			include $this->path;