From 2175fbb21d4a1acb4f3a7c3630b32f18f782db00 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 19 Feb 2015 14:55:34 +0000 Subject: [PATCH] Fix a typo in duplicate hook comment. see [31107], #21195. git-svn-id: https://develop.svn.wordpress.org/trunk@31479 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/pluggable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/pluggable.php b/src/wp-includes/pluggable.php index ebb7001863..8b97cefc70 100644 --- a/src/wp-includes/pluggable.php +++ b/src/wp-includes/pluggable.php @@ -2162,7 +2162,7 @@ function get_avatar( $id_or_email, $size = 96, $default = '', $alt = '', $args = */ $avatar = apply_filters( 'pre_get_avatar', null, $id_or_email, $args ); if ( ! is_null( $avatar ) ) { - /** This filter is documented in src/wp-include/pluggable.php */ + /** This filter is documented in src/wp-includes/pluggable.php */ return apply_filters( 'get_avatar', $avatar, $id_or_email, $args['size'], $args['default'], $args['alt'], $args ); }