Skip to content

Commit 23d23dd

Browse files
committed
Merge pull request laravel#1591 from eddiemonge/patch-1
Update laravel/documentation/requests.md
2 parents d500ab2 + f997838 commit 23d23dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

laravel/documentation/requests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Sometimes you may need to determine if the current URI is a given string, or beg
3535

3636
#### Determine if the current URI begins with "docs/":
3737

38-
if URI::is('docs/*'))
38+
if (URI::is('docs/*'))
3939
{
4040
// The current URI begins with "docs/"!
4141
}
@@ -74,4 +74,4 @@ Sometimes you may need to determine if the current URI is a given string, or beg
7474
if (Request::cli())
7575
{
7676
// This request came from the CLI!
77-
}
77+
}

0 commit comments

Comments
 (0)