From 10322a38bfea004525850a9e4b4f9a7a324e0bf4 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 18 Oct 2015 23:11:49 +0000 Subject: [PATCH] Docs: Fix a typo in the `$blog_id` parameter name in the `rest_url` filter doc. Props rachelbaker. Fixes #34351. git-svn-id: https://develop.svn.wordpress.org/trunk@35266 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/rest-api/rest-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/rest-api/rest-functions.php b/src/wp-includes/rest-api/rest-functions.php index e13814eef7..c4473679f4 100644 --- a/src/wp-includes/rest-api/rest-functions.php +++ b/src/wp-includes/rest-api/rest-functions.php @@ -263,7 +263,7 @@ function get_rest_url( $blog_id = null, $path = '/', $scheme = 'json' ) { * * @param string $url REST URL. * @param string $path REST route. - * @param int $blod_ig Blog ID. + * @param int $blog_id Blog ID. * @param string $scheme Sanitization scheme. */ return apply_filters( 'rest_url', $url, $path, $blog_id, $scheme );