Index: src/wp-admin/edit-comments.php
===================================================================
--- src/wp-admin/edit-comments.php	(revision 38892)
+++ src/wp-admin/edit-comments.php	(working copy)
@@ -91,9 +91,9 @@
 		 *
 		 * @since 4.7.0
 		 *
-		 * @param string $redirect_to The redirect URL.
-		 * @param string $doaction    The action being taken.
-		 * @param array  $comment_ids The comments to take the action on.
+		 * @param string $redirect_url The redirect URL.
+		 * @param string $doaction     The action being taken.
+		 * @param array  $items        The items to take the action on.
 		 */
 		$redirect_to = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $redirect_to, $doaction, $comment_ids );
 	}
Index: src/wp-admin/edit-tags.php
===================================================================
--- src/wp-admin/edit-tags.php	(revision 38892)
+++ src/wp-admin/edit-tags.php	(working copy)
@@ -174,18 +174,7 @@
 	}
 	check_admin_referer( 'bulk-tags' );
 	$tags = (array) $_REQUEST['delete_tags'];
-	/**
-	 * Fires when a custom bulk action should be handled.
-	 *
-	 * The sendback link should be modified with success or failure feedback
-	 * from the action to be used to display feedback to the user.
-	 *
-	 * @since 4.7.0
-	 *
-	 * @param string $location The redirect URL.
-	 * @param string $action   The action being taken.
-	 * @param array  $tags     The tag IDs to take the action on.
-	 */
+	/** This action is documented in wp-admin/edit-comments.php */
 	$location = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $location, $wp_list_table->current_action(), $tags );
 	break;
 }
Index: src/wp-admin/edit.php
===================================================================
--- src/wp-admin/edit.php	(revision 38892)
+++ src/wp-admin/edit.php	(working copy)
@@ -163,18 +163,7 @@
 			}
 			break;
 		default:
-			/**
-			 * Fires when a custom bulk action should be handled.
-			 *
-			 * The sendback link should be modified with success or failure feedback
-			 * from the action to be used to display feedback to the user.
-			 *
-			 * @since 4.7.0
-			 *
-			 * @param string $sendback The redirect URL.
-			 * @param string $doaction The action being taken.
-			 * @param array  $post_ids The post IDs to take the action on.
-			 */
+			/** This action is documented in wp-admin/edit-comments.php */
 			$sendback = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $sendback, $doaction, $post_ids );
 			break;
 	}
Index: src/wp-admin/link-manager.php
===================================================================
--- src/wp-admin/link-manager.php	(revision 38892)
+++ src/wp-admin/link-manager.php	(working copy)
@@ -31,18 +31,7 @@
 
 		$redirect_to = add_query_arg( 'deleted', count( $bulklinks ), $redirect_to );
 	} else {
-		/**
-		 * Fires when a custom bulk action should be handled.
-		 *
-		 * The redirect link should be modified with success or failure feedback
-		 * from the action to be used to display feedback to the user.
-		 *
-		 * @since 4.7.0
-		 *
-		 * @param string $redirect_to The redirect URL.
-		 * @param string $doaction    The action being taken.
-		 * @param array  $bulklinks   The links to take the action on.
-		 */
+		/** This action is documented in wp-admin/edit-comments.php */
 		$redirect_to = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $redirect_to, $doaction, $bulklinks );
 	}
 	wp_redirect( $redirect_to );
Index: src/wp-admin/network/site-themes.php
===================================================================
--- src/wp-admin/network/site-themes.php	(revision 38892)
+++ src/wp-admin/network/site-themes.php	(working copy)
@@ -132,12 +132,12 @@
 				 *
 				 * @since 4.7.0
 				 *
-				 * @param string $referer The redirect URL.
-				 * @param string $action  The action being taken.
-				 * @param array  $themes  The themes to take the action on.
-				 * @param int    $site_id The current site id
+				 * @param string $redirect_url The redirect URL.
+				 * @param string $action       The action being taken.
+				 * @param array  $items        The items to take the action on.
+				 * @param int    $site_id      The site id.
 				 */
-				$referer = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $referer, $action, $themes, $id );
+				$referer = apply_filters( 'network_handle_bulk_actions-' . get_current_screen()->id, $referer, $action, $themes, $id );
 			} else {
 				$action = 'error';
 				$n = 'none';
Index: src/wp-admin/network/site-users.php
===================================================================
--- src/wp-admin/network/site-users.php	(revision 38892)
+++ src/wp-admin/network/site-users.php	(working copy)
@@ -170,20 +170,8 @@
 			}
 			check_admin_referer( 'bulk-users' );
 			$userids = $_REQUEST['users'];
-			/**
-			 * Fires when a custom bulk action should be handled.
-			 *
-			 * The redirect link should be modified with success or failure feedback
-			 * from the action to be used to display feedback to the user.
-			 *
-			 * @since 4.7.0
-			 *
-			 * @param string $referer The redirect URL.
-			 * @param string $action  The action being taken.
-			 * @param array  $userids The users to take the action on.
-			 * @param int    $id      The id of the current site
-			 */
-			$referer = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $referer, $action, $userids, $id );
+			/** This action is documented in wp-admin/network/site-themes.php */
+			$referer = apply_filters( 'network_handle_bulk_actions-' . get_current_screen()->id, $referer, $action, $userids, $id );
 			$update = $action;
 			break;
 	}
Index: src/wp-admin/network/sites.php
===================================================================
--- src/wp-admin/network/sites.php	(revision 38892)
+++ src/wp-admin/network/sites.php	(working copy)
@@ -160,20 +160,8 @@
 				if ( ! in_array( $doaction, array( 'delete', 'spam', 'notspam' ), true ) ) {
 					$redirect_to = wp_get_referer();
 					$blogs = (array) $_POST['allblogs'];
-					/**
-					 * Fires when a custom bulk action should be handled.
-					 *
-					 * The redirect link should be modified with success or failure feedback
-					 * from the action to be used to display feedback to the user.
-					 *
-					 * @since 4.7.0
-					 *
-					 * @param string $redirect_to The redirect URL.
-					 * @param string $doaction      The action being taken.
-					 * @param array  $blogs       The blogs to take the action on.
-					 * @param int    $site_id     The current site id.
-					 */
-					$redirect_to = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $redirect_to, $doaction, $blogs, $id );
+					/** This action is documented in wp-admin/network/site-themes.php */
+					$redirect_to = apply_filters( 'network_handle_bulk_actions-' . get_current_screen()->id, $redirect_to, $doaction, $blogs, $id );
 					wp_safe_redirect( $redirect_to );
 					exit();
 				}
Index: src/wp-admin/network/themes.php
===================================================================
--- src/wp-admin/network/themes.php	(revision 38892)
+++ src/wp-admin/network/themes.php	(working copy)
@@ -200,19 +200,8 @@
 			}
 			check_admin_referer( 'bulk-themes' );
 
-			/**
-			 * Fires when a custom bulk action should be handled.
-			 *
-			 * The redirect link should be modified with success or failure feedback
-			 * from the action to be used to display feedback to the user.
-			 *
-			 * @since 4.7.0
-			 *
-			 * @param string $referer   The redirect URL.
-			 * @param string $action    The action being taken.
-			 * @param array  $themes    The themes to take the action on.
-			 */
-			$referer = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $referer, $action, $themes );
+			/** This action is documented in wp-admin/network/site-themes.php */
+			$referer = apply_filters( 'network_handle_bulk_actions-' . get_current_screen()->id, $referer, $action, $themes );
 
 			wp_safe_redirect( $referer );
 			exit;
Index: src/wp-admin/network/users.php
===================================================================
--- src/wp-admin/network/users.php	(revision 38892)
+++ src/wp-admin/network/users.php	(working copy)
@@ -94,19 +94,8 @@
 					$sendback = wp_get_referer();
 
 					$user_ids = (array) $_POST['allusers'];
-					/**
-					 * Fires when a custom bulk action should be handled.
-					 *
-					 * The sendback link should be modified with success or failure feedback
-					 * from the action to be used to display feedback to the user.
-					 *
-					 * @since 4.7.0
-					 *
-					 * @param string $sendback The redirect URL.
-					 * @param string $doaction The action being taken.
-					 * @param array  $user_ids The users to take the action on.
-					 */
-					$sendback = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $sendback, $doaction, $user_ids );
+					/** This action is documented in wp-admin/network/site-themes.php */
+					$sendback = apply_filters( 'network_handle_bulk_actions-' . get_current_screen()->id, $sendback, $doaction, $user_ids );
 
 					wp_safe_redirect( $sendback );
 					exit();
Index: src/wp-admin/plugins.php
===================================================================
--- src/wp-admin/plugins.php	(revision 38892)
+++ src/wp-admin/plugins.php	(working copy)
@@ -363,20 +363,8 @@
 				$plugins = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
 				$sendback = wp_get_referer();
 
-				/**
-				 * Fires when a custom bulk action should be handled.
-				 *
-				 * The sendback link should be modified with success or failure feedback
-				 * from the action to be used to display feedback to the user.
-				 *
-				 * @since 4.7.0
-				 *
-				 * @param string $sendback The redirect URL.
-				 * @param string $action   The action being taken.
-				 * @param array  $plugins  The plugins to take the action on.
-				 */
+				/** This action is documented in wp-admin/edit-comments.php */
 				$sendback = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $sendback, $action, $plugins );
-
 				wp_safe_redirect( $sendback );
 				exit;
 			}
Index: src/wp-admin/upload.php
===================================================================
--- src/wp-admin/upload.php	(revision 38892)
+++ src/wp-admin/upload.php	(working copy)
@@ -164,18 +164,7 @@
 			$location = add_query_arg( 'deleted', count( $post_ids ), $location );
 			break;
 		default:
-			/**
-			 * Fires when a custom bulk action should be handled.
-			 *
-			 * The redirect link should be modified with success or failure feedback
-			 * from the action to be used to display feedback to the user.
-			 *
-			 * @since 4.7.0
-			 *
-			 * @param string $location The redirect URL.
-			 * @param string $doaction The action being taken.
-			 * @param array  $post_ids The posts to take the action on.
-			 */
+			/** This action is documented in wp-admin/edit-comments.php */
 			$location = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $location, $doaction, $post_ids );
 	}
 
Index: src/wp-admin/users.php
===================================================================
--- src/wp-admin/users.php	(revision 38892)
+++ src/wp-admin/users.php	(working copy)
@@ -414,18 +414,7 @@
 		$userids = $_REQUEST['users'];
 		$sendback = wp_get_referer();
 
-		/**
-		 * Fires when a custom bulk action should be handled.
-		 *
-		 * The sendback link should be modified with success or failure feedback
-		 * from the action to be used to display feedback to the user.
-		 *
-		 * @since 4.7.0
-		 *
-		 * @param string $sendback The redirect URL.
-		 * @param string $action   The action being taken.
-		 * @param array  $userids  The users to take the action on.
-		 */
+		/** This action is documented in wp-admin/edit-comments.php */
 		$sendback = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $sendback, $wp_list_table->current_action(), $userids );
 
 		wp_safe_redirect( $sendback );
