From bef05b469bf06c42511adc6db1af6e56e54a757f Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 25 May 2016 16:05:27 +0000 Subject: [PATCH] Docs: Standardize DocBlock summaries for hooks that serve to "print" something to use third-person singular verbs. See #36913. Built from https://develop.svn.wordpress.org/trunk@37560 git-svn-id: http://core.svn.wordpress.org/trunk@37528 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/admin-footer.php | 4 ++-- wp-admin/admin-header.php | 8 ++++---- wp-admin/customize.php | 2 +- wp-includes/general-template.php | 4 ++-- wp-includes/media.php | 2 +- wp-includes/theme-compat/embed-content.php | 4 ++-- wp-includes/theme-compat/footer-embed.php | 2 +- wp-includes/theme-compat/header-embed.php | 2 +- wp-includes/version.php | 2 +- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/wp-admin/admin-footer.php b/wp-admin/admin-footer.php index 3f40130639..0d0174d1da 100644 --- a/wp-admin/admin-footer.php +++ b/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/wp-admin/customize.php b/wp-admin/customize.php index 4a15c1536d..db27142074 100644 --- a/wp-admin/customize.php +++ b/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 */ diff --git a/wp-includes/version.php b/wp-includes/version.php index a7f10797c8..bc90eec73e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37559'; +$wp_version = '4.6-alpha-37560'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.