From 63708d64e08eff388c881ff8e48bd33565ac6951 Mon Sep 17 00:00:00 2001 From: Pierre Bertet Date: Tue, 8 Jan 2013 16:57:52 +0100 Subject: [PATCH] Documentation: typo Signed-off-by: Pierre Bertet --- laravel/documentation/views/home.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/documentation/views/home.md b/laravel/documentation/views/home.md index 3daf57a9..97e9e19f 100644 --- a/laravel/documentation/views/home.md +++ b/laravel/documentation/views/home.md @@ -184,7 +184,7 @@ Now each time the "home" view is created, an instance of the View will be passed ## Redirects -It's important to note that both routes and controllers require responses to be returned with the 'return' directive. Instead of calling "Redirect::to()"" where you'd like to redirect the user. You'd instead use "return Redirect::to()". This distinction is important as it's different than most other PHP frameworks and it could be easy to accidentally overlook the importance of this practice. +It's important to note that both routes and controllers require responses to be returned with the 'return' directive. Instead of calling "Redirect::to()" where you'd like to redirect the user. You'd instead use "return Redirect::to()". This distinction is important as it's different than most other PHP frameworks and it could be easy to accidentally overlook the importance of this practice. #### Redirecting to another URI: