From 2a02b9f6acefdb1eff218256fb54ca25e241ee6f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 25 Feb 2012 22:30:35 -0600 Subject: [PATCH] cleaning up view code. Signed-off-by: Taylor Otwell --- laravel/view.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/view.php b/laravel/view.php index dc1b5209..d6985ca9 100644 --- a/laravel/view.php +++ b/laravel/view.php @@ -201,7 +201,7 @@ public function render() { // 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 @@ public function get() // 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;