Docs: Add a missing parenthesis in an example in the DocBlock for wp_redirect().

Props shayanys.
See #37770.


git-svn-id: https://develop.svn.wordpress.org/trunk@38350 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes
2016-08-25 07:35:15 +00:00
parent 861bdc722f
commit 66ac1f40ed
+1 -1
View File
@@ -1128,7 +1128,7 @@ if ( !function_exists('wp_redirect') ) :
* Exiting can also be selectively manipulated by using wp_redirect() as a conditional
* in conjunction with the {@see 'wp_redirect'} and {@see 'wp_redirect_location'} hooks:
*
* if ( wp_redirect( $url ) {
* if ( wp_redirect( $url ) ) {
* exit;
* }
*