From b75066943f60625c2309bcbe51e07bb088fac796 Mon Sep 17 00:00:00 2001 From: nacin Date: Thu, 9 Jun 2011 21:47:28 +0000 Subject: [PATCH] PHPdoc fixes. props trepmal. fixes #17734. git-svn-id: http://svn.automattic.com/wordpress/trunk@18220 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/admin-bar.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-includes/admin-bar.php b/wp-includes/admin-bar.php index cea2a2c80..15ea12ba9 100644 --- a/wp-includes/admin-bar.php +++ b/wp-includes/admin-bar.php @@ -94,7 +94,7 @@ function wp_admin_bar_my_account_menu( $wp_admin_bar ) { } /** - * Add the "Dashboard"/"View Site" menu. + * Add the "Dashboard"/"Visit Site" menu. * * @since 3.2.0 */ @@ -387,7 +387,7 @@ function _admin_bar_bump_cb() { ?> } /** - * Set the display status of the admin bar + * Set the display status of the admin bar. * * This can be called immediately upon plugin load. It does not need to be called from a function hooked to the init action. * @@ -435,9 +435,9 @@ function is_admin_bar_showing() { * @since 3.1.0 * @access private * - * @param string $context Context of this preference check, either 'admin' or 'front' - * @param int $user Optional. ID of the user to check, defaults to 0 for current user - * @return bool Whether the admin bar should be showing for this user + * @param string $context Context of this preference check, either 'admin' or 'front'. + * @param int $user Optional. ID of the user to check, defaults to 0 for current user. + * @return bool Whether the admin bar should be showing for this user. */ function _get_admin_bar_pref( $context, $user = 0 ) { $pref = get_user_option( "show_admin_bar_{$context}", $user );