Update laravel/documentation/requests.md

Fixed typo. Missing opening paren
This commit is contained in:
Eddie Monge Jr. 2013-01-12 17:32:38 -08:00
parent 252990455e
commit f997838f5f
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ #### Determine if the URI is "home":
#### Determine if the current URI begins with "docs/": #### Determine if the current URI begins with "docs/":
if URI::is('docs/*')) if (URI::is('docs/*'))
{ {
// The current URI begins with "docs/"! // The current URI begins with "docs/"!
} }
@ -74,4 +74,4 @@ #### Determining if the current requst is via the Artisan CLI:
if (Request::cli()) if (Request::cli())
{ {
// This request came from the CLI! // This request came from the CLI!
} }