From f997838f5f0f8fd8cf1302d2acf57a342385b812 Mon Sep 17 00:00:00 2001 From: "Eddie Monge Jr." Date: Sat, 12 Jan 2013 17:32:38 -0800 Subject: [PATCH] Update laravel/documentation/requests.md Fixed typo. Missing opening paren --- laravel/documentation/requests.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/documentation/requests.md b/laravel/documentation/requests.md index 5a7426e2..97bb66ad 100644 --- a/laravel/documentation/requests.md +++ b/laravel/documentation/requests.md @@ -35,7 +35,7 @@ #### Determine if the URI is "home": #### Determine if the current URI begins with "docs/": - if URI::is('docs/*')) + if (URI::is('docs/*')) { // The current URI begins with "docs/"! } @@ -74,4 +74,4 @@ #### Determining if the current requst is via the Artisan CLI: if (Request::cli()) { // This request came from the CLI! - } \ No newline at end of file + }