Embeds: Fix typo in `oembed_request_post_id` filter DocBlock.

Props swissspidy.
See #34523.

git-svn-id: https://develop.svn.wordpress.org/trunk@35470 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2015-10-31 15:37:10 +00:00
parent c01ce19d70
commit b0c7058037
1 changed files with 2 additions and 2 deletions

View File

@ -67,12 +67,12 @@ final class WP_oEmbed_Controller {
$post_id = url_to_postid( $request['url'] );
/**
* Filter the determined post id.
* Filter the determined post ID.
*
* @since 4.4.0
*
* @param int $post_id The post ID.
* @param string $url The requestd URL.
* @param string $url The requested URL.
*/
$post_id = apply_filters( 'oembed_request_post_id', $post_id, $request['url'] );