From 90033f46bcdcadb047e2c0d810383dd7ffc7ca00 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 2 Mar 2014 20:31:15 +0000 Subject: [PATCH] Tweak inline documentation for hooks in wp-admin/includes/class-wp-users-list-table.php. Props kpdesign. Fixes #26203. git-svn-id: https://develop.svn.wordpress.org/trunk@27355 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/class-wp-users-list-table.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/wp-admin/includes/class-wp-users-list-table.php b/src/wp-admin/includes/class-wp-users-list-table.php index 6e9a273542..dcce6d555a 100644 --- a/src/wp-admin/includes/class-wp-users-list-table.php +++ b/src/wp-admin/includes/class-wp-users-list-table.php @@ -218,7 +218,7 @@ class WP_Users_List_Table extends WP_List_Table { endif; /** - * Fires just before the closing div containing the buik role-change controls + * Fires just before the closing div containing the bulk role-change controls * in the Users list table. * * @since 3.5.0 @@ -371,11 +371,13 @@ class WP_Users_List_Table extends WP_List_Table { $actions['remove'] = "" . __( 'Remove' ) . ""; /** - * Filter user row actions for a single row in the Users list table. + * Filter the action links displayed under each user in the Users list table. * * @since 2.8.0 * - * @param array $actions Array of row actions actions. + * @param array $actions An array of action links to be displayed. + * Default 'Edit', 'Delete' for single site, and + * 'Edit', 'Remove' for Multisite. * @param WP_User $user_object WP_User object for the currently-listed user. */ $actions = apply_filters( 'user_row_actions', $actions, $user_object ); @@ -436,11 +438,11 @@ class WP_Users_List_Table extends WP_List_Table { $r .= ""; /** - * Filter display output of custom columns in the Users list table. + * Filter the display output of custom columns in the Users list table. * * @since 2.8.0 * - * @param string $output Custom column output. Default empty. + * @param string $output Custom column output. Default empty. * @param string $column_name Column name. * @param int $user_id ID of the currently-listed user. */