diff --git a/src/wp-includes/pluggable.php b/src/wp-includes/pluggable.php index c2a975d896..2852e23a93 100644 --- a/src/wp-includes/pluggable.php +++ b/src/wp-includes/pluggable.php @@ -1361,7 +1361,7 @@ if ( ! function_exists( 'wp_redirect' ) ) : * @param string $location The path or URL to redirect to. * @param int $status Optional. HTTP response status code to use. Default '302' (Moved Temporarily). * @param string $x_redirect_by Optional. The application doing the redirect. Default 'WordPress'. - * @return bool False if the redirect was cancelled, true otherwise. + * @return bool False if the redirect was canceled, true otherwise. */ function wp_redirect( $location, $status = 302, $x_redirect_by = 'WordPress' ) { global $is_IIS; @@ -1504,7 +1504,7 @@ if ( ! function_exists( 'wp_safe_redirect' ) ) : * @param string $location The path or URL to redirect to. * @param int $status Optional. HTTP response status code to use. Default '302' (Moved Temporarily). * @param string $x_redirect_by Optional. The application doing the redirect. Default 'WordPress'. - * @return bool False if the redirect was cancelled, true otherwise. + * @return bool False if the redirect was canceled, true otherwise. */ function wp_safe_redirect( $location, $status = 302, $x_redirect_by = 'WordPress' ) {