Skip to content

Commit f997838

Browse files
committed
Update laravel/documentation/requests.md
Fixed typo. Missing opening paren
1 parent 2529904 commit f997838

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)