From 32418ef8ed929b2c45e8fe71d073fcecfcc9618b Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 25 May 2016 16:04:37 +0000 Subject: [PATCH] Docs: Standardize DocBlock summaries for hooks that serve to "print" something to use third-person singular verbs. See #36913. git-svn-id: https://develop.svn.wordpress.org/trunk@37560 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/admin-footer.php | 4 ++-- src/wp-admin/admin-header.php | 8 ++++---- src/wp-admin/customize.php | 2 +- src/wp-includes/general-template.php | 4 ++-- src/wp-includes/media.php | 2 +- src/wp-includes/theme-compat/embed-content.php | 4 ++-- src/wp-includes/theme-compat/footer-embed.php | 2 +- src/wp-includes/theme-compat/header-embed.php | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/wp-admin/admin-footer.php b/src/wp-admin/admin-footer.php index 3f40130639..0d0174d1da 100644 --- a/src/wp-admin/admin-footer.php +++ b/src/wp-admin/admin-footer.php @@ -63,7 +63,7 @@ global $hook_suffix; render_screen_meta(); if ( is_network_admin() ) { /** - * Print network admin screen notices. + * Prints network admin screen notices. * * @since 3.1.0 */ do_action( 'network_admin_notices' ); } elseif ( is_user_admin() ) { /** - * Print user admin screen notices. + * Prints user admin screen notices. * * @since 3.1.0 */ do_action( 'user_admin_notices' ); } else { /** - * Print admin screen notices. + * Prints admin screen notices. * * @since 3.1.0 */ @@ -251,7 +251,7 @@ if ( is_network_admin() ) { } /** - * Print generic admin screen notices. + * Prints generic admin screen notices. * * @since 3.1.0 */ diff --git a/src/wp-admin/customize.php b/src/wp-admin/customize.php index 4a15c1536d..db27142074 100644 --- a/src/wp-admin/customize.php +++ b/src/wp-admin/customize.php @@ -178,7 +178,7 @@ do_action( 'customize_controls_print_scripts' ); tag. + * Prints scripts or data in the embed template tag. * * @since 4.4.0 */