diff --git a/src/wp-includes/post.php b/src/wp-includes/post.php index eff63c010e96e..d6041eebebc13 100644 --- a/src/wp-includes/post.php +++ b/src/wp-includes/post.php @@ -2413,7 +2413,7 @@ function is_post_embeddable( $post = null ) { * * @since x.x.x * - * $param bool $is_embeddable Whether the post is embeddable. + * @param bool $is_embeddable Whether the post is embeddable. * @param WP_Post $post Post object. */ return apply_filters( 'is_post_embeddable', $is_embeddable, $post ); diff --git a/tests/phpunit/tests/oembed/discovery.php b/tests/phpunit/tests/oembed/discovery.php index 3c8ed62795059..290a8e5d6ef27 100644 --- a/tests/phpunit/tests/oembed/discovery.php +++ b/tests/phpunit/tests/oembed/discovery.php @@ -86,7 +86,6 @@ public function test_add_oembed_discovery_links_to_attachment() { $this->assertSame( $expected, get_echo( 'wp_oembed_add_discovery_links' ) ); } - /** * @ticket 35567 */