Index: src/wp-admin/admin-header.php
===================================================================
--- src/wp-admin/admin-header.php	(revision 44362)
+++ src/wp-admin/admin-header.php	(working copy)
@@ -16,8 +16,8 @@
  *
  * @global string    $title
  * @global string    $hook_suffix
- * @global WP_Screen $current_screen
- * @global WP_Locale $wp_locale
+ * @global WP_Screen $current_screen     The WordPress Current screen object.
+ * @global WP_Locale $wp_locale          The WordPress date and time locale object.
  * @global string    $pagenow
  * @global string    $update_title
  * @global int       $total_update_count
Index: src/wp-admin/export.php
===================================================================
--- src/wp-admin/export.php	(revision 44362)
+++ src/wp-admin/export.php	(working copy)
@@ -128,7 +128,7 @@
  * Create the date options fields for exporting a given post type.
  *
  * @global wpdb      $wpdb      WordPress database abstraction object.
- * @global WP_Locale $wp_locale Date and Time Locale object.
+ * @global WP_Locale $wp_locale The WordPress date and time locale object.
  *
  * @since 3.1.0
  *
Index: src/wp-admin/includes/class-wp-list-table.php
===================================================================
--- src/wp-admin/includes/class-wp-list-table.php	(revision 44362)
+++ src/wp-admin/includes/class-wp-list-table.php	(working copy)
@@ -535,8 +535,8 @@
 	 *
 	 * @since 3.1.0
 	 *
-	 * @global wpdb      $wpdb
-	 * @global WP_Locale $wp_locale
+	 * @global wpdb      $wpdb      WordPress database abstraction object.
+	 * @global WP_Locale $wp_locale The WordPress date and time locale object.
 	 *
 	 * @param string $post_type
 	 */
Index: src/wp-admin/includes/class-wp-media-list-table.php
===================================================================
--- src/wp-admin/includes/class-wp-media-list-table.php	(revision 44362)
+++ src/wp-admin/includes/class-wp-media-list-table.php	(working copy)
@@ -61,7 +61,7 @@
 	}
 
 	/**
-	 * @global WP_Query $wp_query
+ 	 * @global WP_Query $wp_query Global WP_Query instance.
 	 * @global array    $post_mime_types
 	 * @global array    $avail_post_mime_types
 	 * @global string   $mode
Index: src/wp-admin/includes/class-wp-ms-sites-list-table.php
===================================================================
--- src/wp-admin/includes/class-wp-ms-sites-list-table.php	(revision 44362)
+++ src/wp-admin/includes/class-wp-ms-sites-list-table.php	(working copy)
@@ -64,7 +64,7 @@
 	 *
 	 * @global string $s
 	 * @global string $mode
-	 * @global wpdb   $wpdb
+	 * @global wpdb   $wpdb WordPress database abstraction object.
 	 */
 	public function prepare_items() {
 		global $s, $mode, $wpdb;
Index: src/wp-admin/includes/class-wp-ms-users-list-table.php
===================================================================
--- src/wp-admin/includes/class-wp-ms-users-list-table.php	(revision 44362)
+++ src/wp-admin/includes/class-wp-ms-users-list-table.php	(working copy)
@@ -26,7 +26,7 @@
 	/**
 	 * @global string $usersearch
 	 * @global string $role
-	 * @global wpdb   $wpdb
+	 * @global wpdb   $wpdb WordPress database abstraction object.
 	 * @global string $mode
 	 */
 	public function prepare_items() {
Index: src/wp-admin/includes/class-wp-posts-list-table.php
===================================================================
--- src/wp-admin/includes/class-wp-posts-list-table.php	(revision 44362)
+++ src/wp-admin/includes/class-wp-posts-list-table.php	(working copy)
@@ -67,7 +67,7 @@
 	 * @see WP_List_Table::__construct() for more information on default arguments.
 	 *
 	 * @global WP_Post_Type $post_type_object
-	 * @global wpdb         $wpdb
+	 * @global wpdb         $wpdb             WordPress database abstraction object.
 	 *
 	 * @param array $args An associative array of arguments.
 	 */
@@ -135,7 +135,7 @@
 
 	/**
 	 * @global array    $avail_post_stati
-	 * @global WP_Query $wp_query
+ 	 * @global WP_Query $wp_query Global WP_Query instance.
 	 * @global int      $per_page
 	 * @global string   $mode
 	 */
@@ -632,7 +632,7 @@
 	}
 
 	/**
-	 * @global WP_Query $wp_query
+ 	 * @global WP_Query $wp_query Global WP_Query instance.
 	 * @global int $per_page
 	 * @param array $posts
 	 * @param int $level
@@ -677,7 +677,7 @@
 	}
 
 	/**
-	 * @global wpdb    $wpdb
+	 * @global wpdb    $wpdb WordPress database abstraction object.
 	 * @global WP_Post $post
 	 * @param array $pages
 	 * @param int $pagenum
Index: src/wp-admin/includes/class-wp-screen.php
===================================================================
--- src/wp-admin/includes/class-wp-screen.php	(revision 44362)
+++ src/wp-admin/includes/class-wp-screen.php	(working copy)
@@ -376,7 +376,7 @@
 	 * @see set_current_screen()
 	 * @since 3.3.0
 	 *
-	 * @global WP_Screen $current_screen
+	 * @global WP_Screen $current_screen The WordPress Current screen object.
 	 * @global string    $taxnow
 	 * @global string    $typenow
 	 */
Index: src/wp-admin/includes/export.php
===================================================================
--- src/wp-admin/includes/export.php	(revision 44362)
+++ src/wp-admin/includes/export.php	(working copy)
@@ -515,7 +515,7 @@
 	<?php
 	if ( $post_ids ) {
 		/**
-		 * @global WP_Query $wp_query
+		 * @global WP_Query $wp_query Global WP_Query instance.
 		 */
 		global $wp_query;
 
Index: src/wp-admin/includes/media.php
===================================================================
--- src/wp-admin/includes/media.php	(revision 44362)
+++ src/wp-admin/includes/media.php	(working copy)
@@ -1404,7 +1404,7 @@
  *
  * @since 2.5.0
  *
- * @global WP_Query $wp_the_query
+ * @global WP_Query $wp_query Global WP_Query instance.
  *
  * @param int $post_id Optional. Post ID.
  * @param array $errors Errors for attachment, if any.
@@ -2509,9 +2509,9 @@
  *
  * @since 2.5.0
  *
- * @global wpdb      $wpdb
- * @global WP_Query  $wp_query
- * @global WP_Locale $wp_locale
+ * @global wpdb      $wpdb            WordPress database abstraction object.
+ * @global WP_Query  $wp_query        Global WP_Query instance.
+ * @global WP_Locale $wp_locale       The WordPress date and time locale object.
  * @global string    $type
  * @global string    $tab
  * @global array     $post_mime_types
Index: src/wp-admin/includes/schema.php
===================================================================
--- src/wp-admin/includes/schema.php	(revision 44362)
+++ src/wp-admin/includes/schema.php	(working copy)
@@ -11,7 +11,7 @@
 /**
  * Declare these as global in case schema.php is included from a function.
  *
- * @global wpdb   $wpdb
+ * @global wpdb   $wpdb            WordPress database abstraction object.
  * @global array  $wp_queries
  * @global string $charset_collate
  */
@@ -959,7 +959,7 @@
  *
  * @since 3.0.0
  *
- * @global wpdb       $wpdb
+ * @global wpdb       $wpdb          WordPress database abstraction object.
  * @global object     $current_site
  * @global WP_Rewrite $wp_rewrite
  *
Index: src/wp-admin/includes/screen.php
===================================================================
--- src/wp-admin/includes/screen.php	(revision 44362)
+++ src/wp-admin/includes/screen.php	(working copy)
@@ -215,7 +215,7 @@
  *
  * @since 3.1.0
  *
- * @global WP_Screen $current_screen
+ * @global WP_Screen $current_screen The WordPress Current screen object.
  *
  * @return WP_Screen|null Current screen object or null when screen not defined.
  */
Index: src/wp-admin/includes/template.php
===================================================================
--- src/wp-admin/includes/template.php	(revision 44362)
+++ src/wp-admin/includes/template.php	(working copy)
@@ -751,7 +751,7 @@
  * @since 0.71
  * @since 4.4.0 Converted to use get_comment() instead of the global `$comment`.
  *
- * @global WP_Locale  $wp_locale
+ * @global WP_Locale  $wp_locale The WordPress date and time locale object.
  *
  * @param int|bool $edit      Accepts 1|true for editing the date, 0|false for adding the date.
  * @param int|bool $for_post  Accepts 1|true for applying the date to a post, 0|false for a comment.
@@ -1890,7 +1890,7 @@
  *
  * @global string    $hook_suffix
  * @global string    $admin_body_class
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale        The WordPress date and time locale object.
  *
  * @param string $title      Optional. Title of the Iframe page. Default empty.
  * @param bool   $deprecated Not used.
Index: src/wp-admin/includes/update-core.php
===================================================================
--- src/wp-admin/includes/update-core.php	(revision 44362)
+++ src/wp-admin/includes/update-core.php	(working copy)
@@ -864,7 +864,7 @@
  * @global WP_Filesystem_Base $wp_filesystem          WordPress filesystem subclass.
  * @global array              $_old_files
  * @global array              $_new_bundled_files
- * @global wpdb               $wpdb
+ * @global wpdb               $wpdb                   WordPress database abstraction object.
  * @global string             $wp_version
  * @global string             $required_php_version
  * @global string             $required_mysql_version
Index: src/wp-admin/includes/upgrade.php
===================================================================
--- src/wp-admin/includes/upgrade.php	(revision 44362)
+++ src/wp-admin/includes/upgrade.php	(working copy)
@@ -126,13 +126,13 @@
 	 *
 	 * Adds the default "Uncategorized" category, the first post (with comment),
 	 * first page, and default widgets for default theme for the current version.
-	 *
-	 * @since 2.1.0
-	 *
-	 * @global wpdb       $wpdb
-	 * @global WP_Rewrite $wp_rewrite
-	 * @global string     $table_prefix
-	 *
+ *
+ * @since 2.1.0
+ *
+ * @global wpdb       $wpdb         WordPress database abstraction object.
+ * @global WP_Rewrite $wp_rewrite
+ * @global string     $table_prefix
+ *
 	 * @param int $user_id User ID.
 	 */
 	function wp_install_defaults( $user_id ) {
@@ -1683,7 +1683,7 @@
  * @since 3.3.0
  *
  * @global int   $wp_current_db_version
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb                  WordPress database abstraction object.
  * @global array $wp_registered_widgets
  * @global array $sidebars_widgets
  */
@@ -1763,7 +1763,7 @@
  * @since 3.4.0
  *
  * @global int   $wp_current_db_version
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb                  WordPress database abstraction object.
  */
 function upgrade_340() {
 	global $wp_current_db_version, $wpdb;
@@ -1800,7 +1800,7 @@
  * @since 3.5.0
  *
  * @global int   $wp_current_db_version
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb                  WordPress database abstraction object.
  */
 function upgrade_350() {
 	global $wp_current_db_version, $wpdb;
@@ -1901,7 +1901,7 @@
  * @since 4.2.0
  *
  * @global int   $wp_current_db_version
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb                  WordPress database abstraction object.
  */
 function upgrade_420() {}
 
@@ -2123,7 +2123,7 @@
  * @since 3.0.0
  *
  * @global int   $wp_current_db_version
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb                  WordPress database abstraction object.
  */
 function upgrade_network() {
 	global $wp_current_db_version, $wpdb;
@@ -2282,7 +2282,7 @@
  *
  * @since 1.0.0
  *
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb WordPress database abstraction object.
  *
  * @param string $table_name Database table name to create.
  * @param string $create_ddl SQL statement to create table.
@@ -2312,7 +2312,7 @@
  *
  * @since 1.0.1
  *
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb WordPress database abstraction object.
  *
  * @param string $table Database table name.
  * @param string $index Index name to drop.
@@ -2335,7 +2335,7 @@
  *
  * @since 1.0.1
  *
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb WordPress database abstraction object.
  *
  * @param string $table Database table name.
  * @param string $index Database table index column.
@@ -2353,7 +2353,7 @@
  *
  * @since 1.3.0
  *
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb WordPress database abstraction object.
  *
  * @param string $table_name  The table name to modify.
  * @param string $column_name The column name to add to the table.
@@ -2385,7 +2385,7 @@
  *
  * @since 4.2.0
  *
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb WordPress database abstraction object.
  *
  * @param string $table The table to convert.
  * @return bool true if the table was converted, false if it wasn't.
@@ -2428,7 +2428,7 @@
  *
  * @since 1.2.0
  *
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb WordPress database abstraction object.
  *
  * @return stdClass List of options.
  */
@@ -2453,7 +2453,7 @@
  * @since 1.5.1
  * @access private
  *
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb WordPress database abstraction object.
  *
  * @param string $setting Option name.
  * @return mixed
@@ -2518,7 +2518,7 @@
  *
  * @since 1.5.0
  *
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb WordPress database abstraction object.
  *
  * @param string[]|string $queries Optional. The query to run. Can be multiple queries
  *                                 in an array, or a string of queries separated by
@@ -3176,7 +3176,7 @@
  *
  * @since 2.1.0
  *
- * @global wpdb  $wpdb
+ * @global wpdb  $wpdb WordPress database abstraction object.
  */
 function wp_check_mysql_version() {
 	global $wpdb;
@@ -3284,13 +3284,13 @@
 if ( ! function_exists( 'install_global_terms' ) ) :
 	/**
 	 * Install global terms.
-	 *
-	 * @since 3.0.0
-	 *
-	 * @global wpdb   $wpdb
-	 * @global string $charset_collate
-	 */
-	function install_global_terms() {
+ *
+ * @since 3.0.0
+ *
+ * @global wpdb   $wpdb            WordPress database abstraction object.
+ * @global string $charset_collate
+ */
+function install_global_terms() {
 		global $wpdb, $charset_collate;
 		$ms_queries = "
 CREATE TABLE $wpdb->sitecategories (
Index: src/wp-admin/install.php
===================================================================
--- src/wp-admin/install.php	(revision 44362)
+++ src/wp-admin/install.php	(working copy)
@@ -229,7 +229,7 @@
  * @global string $wp_version
  * @global string $required_php_version
  * @global string $required_mysql_version
- * @global wpdb   $wpdb
+ * @global wpdb   $wpdb                   WordPress database abstraction object.
  */
 global $wp_version, $required_php_version, $required_mysql_version;
 
@@ -281,7 +281,7 @@
 
 /**
  * @global string    $wp_local_package
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale        The WordPress date and time locale object.
  */
 $language = '';
 if ( ! empty( $_REQUEST['language'] ) ) {
Index: src/wp-admin/options-general.php
===================================================================
--- src/wp-admin/options-general.php	(revision 44362)
+++ src/wp-admin/options-general.php	(working copy)
@@ -395,7 +395,7 @@
 <td><select name="start_of_week" id="start_of_week">
 <?php
 /**
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale The WordPress date and time locale object.
  */
 global $wp_locale;
 
Index: src/wp-admin/setup-config.php
===================================================================
--- src/wp-admin/setup-config.php	(revision 44362)
+++ src/wp-admin/setup-config.php	(working copy)
@@ -88,7 +88,7 @@
  * @since 2.3.0
  *
  * @global string    $wp_local_package
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale        The WordPress date and time locale object.
  *
  * @param string|array $body_classes
  */
Index: src/wp-admin/update-core.php
===================================================================
--- src/wp-admin/update-core.php	(revision 44362)
+++ src/wp-admin/update-core.php	(working copy)
@@ -25,7 +25,7 @@
 
 /**
  * @global string $wp_local_package
- * @global wpdb   $wpdb
+ * @global wpdb   $wpdb             WordPress database abstraction object.
  *
  * @staticvar bool $first_pass
  *
Index: src/wp-admin/upgrade.php
===================================================================
--- src/wp-admin/upgrade.php	(revision 44362)
+++ src/wp-admin/upgrade.php	(working copy)
@@ -40,7 +40,7 @@
  * @global string $wp_version
  * @global string $required_php_version
  * @global string $required_mysql_version
- * @global wpdb   $wpdb
+ * @global wpdb   $wpdb                   WordPress database abstraction object.
  */
 global $wp_version, $required_php_version, $required_mysql_version;
 
Index: src/wp-includes/canonical.php
===================================================================
--- src/wp-includes/canonical.php	(revision 44362)
+++ src/wp-includes/canonical.php	(working copy)
@@ -30,7 +30,7 @@
  *
  * @global WP_Rewrite $wp_rewrite
  * @global bool $is_IIS
- * @global WP_Query $wp_query
+ * @global WP_Query $wp_query Global WP_Query instance.
  * @global wpdb $wpdb WordPress database abstraction object.
  * @global WP $wp Current WordPress environment instance.
  *
Index: src/wp-includes/class-wp-customize-manager.php
===================================================================
--- src/wp-includes/class-wp-customize-manager.php	(revision 44362)
+++ src/wp-includes/class-wp-customize-manager.php	(working copy)
@@ -3326,7 +3326,7 @@
 	 *
 	 * @since 4.7.0
 	 * @see _wp_customize_publish_changeset()
-	 * @global wpdb $wpdb
+	 * @global wpdb $wpdb WordPress database abstraction object.
 	 *
 	 * @param int $changeset_post_id ID for customize_changeset post. Defaults to the changeset for the current manager instance.
 	 * @return true|WP_Error True or error info.
Index: src/wp-includes/class-wp.php
===================================================================
--- src/wp-includes/class-wp.php	(revision 44362)
+++ src/wp-includes/class-wp.php	(working copy)
@@ -568,7 +568,7 @@
 	 *
 	 * @since 2.0.0
 	 *
-	 * @global WP_Query     $wp_query
+     * @global WP_Query     $wp_query Global WP_Query instance.
 	 * @global string       $query_string Query string for the loop.
 	 * @global array        $posts The found posts.
 	 * @global WP_Post|null $post The current post, if available.
@@ -637,7 +637,7 @@
 	 *
 	 * @since 2.0.0
 	 *
-	 * @global WP_Query $wp_query
+     * @global WP_Query $wp_query Global WP_Query instance.
 	 */
 	public function handle_404() {
 		global $wp_query;
Index: src/wp-includes/comment-template.php
===================================================================
--- src/wp-includes/comment-template.php	(revision 44362)
+++ src/wp-includes/comment-template.php	(working copy)
@@ -1305,9 +1305,9 @@
  *
  * @since 1.5.0
  *
- * @global WP_Query   $wp_query
+ * @global WP_Query   $wp_query         Global WP_Query instance.
  * @global WP_Post    $post
- * @global wpdb       $wpdb
+ * @global wpdb       $wpdb             WordPress database abstraction object.
  * @global int        $id
  * @global WP_Comment $comment
  * @global string     $user_login
@@ -1953,7 +1953,7 @@
  *
  * @see WP_Query->comments
  *
- * @global WP_Query $wp_query
+ * @global WP_Query $wp_query           Global WP_Query instance.
  * @global int      $comment_alt
  * @global int      $comment_depth
  * @global int      $comment_thread_alt
Index: src/wp-includes/comment.php
===================================================================
--- src/wp-includes/comment.php	(revision 44362)
+++ src/wp-includes/comment.php	(working copy)
@@ -940,7 +940,7 @@
  *
  * @uses Walker_Comment
  *
- * @global WP_Query $wp_query
+ * @global WP_Query $wp_query Global WP_Query instance.
  *
  * @param WP_Comment[] $comments Optional. Array of WP_Comment objects. Defaults to $wp_query->comments.
  * @param int          $per_page Optional. Comments per page.
Index: src/wp-includes/functions.php
===================================================================
--- src/wp-includes/functions.php	(revision 44362)
+++ src/wp-includes/functions.php	(working copy)
@@ -83,7 +83,7 @@
  *
  * @since 0.71
  *
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale           The WordPress date and time locale object.
  *
  * @param string   $dateformatstring      Format to display the date.
  * @param int|bool $timestamp_with_offset Optional. A sum of Unix timestamp and timezone offset in seconds.
@@ -202,7 +202,7 @@
  *
  * @since 4.4.0
  *
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale The WordPress date and time locale object.
  *
  * @param string $date Formatted date string.
  * @return string The date, declined if locale specifies it.
@@ -252,7 +252,7 @@
  *
  * @since 2.3.0
  *
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale The WordPress date and time locale object.
  *
  * @param float $number   The number to convert based on locale.
  * @param int   $decimals Optional. Precision of the number of decimal places. Default 0.
@@ -1081,7 +1081,7 @@
  * @since 2.0.0
  *
  * @global WP       $wp_locale
- * @global WP_Query $wp_query
+ * @global WP_Query $wp_query Global WP_Query instance.
  * @global WP_Query $wp_the_query
  *
  * @param string|array $query_vars Default WP_Query arguments.
Index: src/wp-includes/general-template.php
===================================================================
--- src/wp-includes/general-template.php	(revision 44362)
+++ src/wp-includes/general-template.php	(working copy)
@@ -1113,7 +1113,7 @@
  *
  * @since 1.0.0
  *
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale The WordPress date and time locale object.
  *
  * @param string $sep         Optional, default is '&raquo;'. How to separate the various items
  *                            within the page title.
@@ -1434,7 +1434,7 @@
  *
  * @since 0.71
  *
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale The WordPress date and time locale object.
  *
  * @param string $prefix  Optional. What to display before the title.
  * @param bool   $display Optional, default is true. Whether to display or retrieve title.
@@ -1704,8 +1704,8 @@
  *
  * @see get_archives_link()
  *
- * @global wpdb      $wpdb
- * @global WP_Locale $wp_locale
+ * @global wpdb      $wpdb      WordPress database abstraction object.
+ * @global WP_Locale $wp_locale The WordPress date and time locale object.
  *
  * @param string|array $args {
  *     Default archive links arguments. Optional.
@@ -1956,11 +1956,11 @@
  *
  * @since 1.0.0
  *
- * @global wpdb      $wpdb
+ * @global wpdb      $wpdb      WordPress database abstraction object.
  * @global int       $m
  * @global int       $monthnum
  * @global int       $year
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale The WordPress date and time locale object.
  * @global array     $posts
  *
  * @param bool $initial Optional, default is true. Use initial calendar names.
@@ -2597,7 +2597,7 @@
  *
  * @since 0.71
  *
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale The WordPress date and time locale object.
  */
 function the_weekday() {
 	global $wp_locale;
@@ -2621,7 +2621,7 @@
  *
  * @since 0.71
  *
- * @global WP_Locale       $wp_locale
+ * @global WP_Locale       $wp_locale       The WordPress date and time locale object.
  * @global string|int|bool $currentday
  * @global string|int|bool $previousweekday
  *
@@ -3806,7 +3806,7 @@
  * @since 2.1.0
  * @since 4.9.0 Added the `aria_current` argument.
  *
- * @global WP_Query   $wp_query
+ * @global WP_Query   $wp_query   Global WP_Query instance.
  * @global WP_Rewrite $wp_rewrite
  *
  * @param string|array $args {
Index: src/wp-includes/l10n.php
===================================================================
--- src/wp-includes/l10n.php	(revision 44362)
+++ src/wp-includes/l10n.php	(working copy)
@@ -1503,7 +1503,7 @@
  *
  * @since 3.0.0
  *
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale The WordPress date and time locale object.
  *
  * @return bool Whether locale is RTL.
  */
Index: src/wp-includes/link-template.php
===================================================================
--- src/wp-includes/link-template.php	(revision 44362)
+++ src/wp-includes/link-template.php	(working copy)
@@ -2311,7 +2311,7 @@
  * @since 2.7.0
  *
  * @global int      $paged
- * @global WP_Query $wp_query
+ * @global WP_Query $wp_query Global WP_Query instance.
  *
  * @param string $label    Content for link text.
  * @param int    $max_page Optional. Max pages. Default 0.
@@ -2449,7 +2449,7 @@
  *
  * @since 2.8.0
  *
- * @global WP_Query $wp_query
+ * @global WP_Query $wp_query Global WP_Query instance.
  *
  * @param string|array $args {
  *     Optional. Arguments to build the post pages link navigation.
@@ -2790,7 +2790,7 @@
  *
  * @since 2.7.1
  *
- * @global WP_Query $wp_query
+ * @global WP_Query $wp_query Global WP_Query instance.
  *
  * @param string $label    Optional. Label for link text. Default empty.
  * @param int    $max_page Optional. Max page. Default 0.
Index: src/wp-includes/load.php
===================================================================
--- src/wp-includes/load.php	(revision 44362)
+++ src/wp-includes/load.php	(working copy)
@@ -778,7 +778,7 @@
  *
  * @since 1.5.1
  *
- * @global WP_Screen $current_screen
+ * @global WP_Screen $current_screen The WordPress Current screen object.
  *
  * @return bool True if inside WordPress administration interface, false otherwise.
  */
@@ -802,7 +802,7 @@
  *
  * @since 3.1.0
  *
- * @global WP_Screen $current_screen
+ * @global WP_Screen $current_screen The WordPress Current screen object.
  *
  * @return bool True if inside WordPress blog administration pages.
  */
@@ -826,7 +826,7 @@
  *
  * @since 3.1.0
  *
- * @global WP_Screen $current_screen
+ * @global WP_Screen $current_screen The WordPress Current screen object.
  *
  * @return bool True if inside WordPress network administration pages.
  */
@@ -850,7 +850,7 @@
  *
  * @since 3.1.0
  *
- * @global WP_Screen $current_screen
+ * @global WP_Screen $current_screen The WordPress Current screen object.
  *
  * @return bool True if inside WordPress user administration pages.
  */
Index: src/wp-includes/media.php
===================================================================
--- src/wp-includes/media.php	(revision 44362)
+++ src/wp-includes/media.php	(working copy)
@@ -3429,8 +3429,8 @@
  * @since 3.5.0
  *
  * @global int       $content_width
- * @global wpdb      $wpdb
- * @global WP_Locale $wp_locale
+ * @global wpdb      $wpdb          WordPress database abstraction object.
+ * @global WP_Locale $wp_locale     The WordPress date and time locale object.
  *
  * @param array $args {
  *     Arguments for enqueuing media scripts.
Index: src/wp-includes/ms-blogs.php
===================================================================
--- src/wp-includes/ms-blogs.php	(revision 44362)
+++ src/wp-includes/ms-blogs.php	(working copy)
@@ -1622,7 +1622,7 @@
  * @see restore_current_blog()
  * @since MU (3.0.0)
  *
- * @global wpdb            $wpdb
+ * @global wpdb            $wpdb               WordPress database abstraction object.
  * @global int             $blog_id
  * @global array           $_wp_switched_stack
  * @global bool            $switched
@@ -1702,7 +1702,7 @@
  * @see switch_to_blog()
  * @since MU (3.0.0)
  *
- * @global wpdb            $wpdb
+ * @global wpdb            $wpdb               WordPress database abstraction object.
  * @global array           $_wp_switched_stack
  * @global int             $blog_id
  * @global bool            $switched
Index: src/wp-includes/ms-functions.php
===================================================================
--- src/wp-includes/ms-functions.php	(revision 44362)
+++ src/wp-includes/ms-functions.php	(working copy)
@@ -582,7 +582,7 @@
  *
  * @since MU (3.0.0)
  *
- * @global wpdb   $wpdb
+ * @global wpdb   $wpdb   WordPress database abstraction object.
  * @global string $domain
  *
  * @param string         $blogname   The blog name provided by the user. Must be unique.
Index: src/wp-includes/nav-menu-template.php
===================================================================
--- src/wp-includes/nav-menu-template.php	(revision 44362)
+++ src/wp-includes/nav-menu-template.php	(working copy)
@@ -290,7 +290,7 @@
  * @access private
  * @since 3.0.0
  *
- * @global WP_Query   $wp_query
+ * @global WP_Query   $wp_query   Global WP_Query instance.
  * @global WP_Rewrite $wp_rewrite
  *
  * @param array $menu_items The current menu item objects to which to add the class property information.
Index: src/wp-includes/option.php
===================================================================
--- src/wp-includes/option.php	(revision 44362)
+++ src/wp-includes/option.php	(working copy)
@@ -1193,7 +1193,7 @@
  *
  * @see get_option()
  *
- * @global wpdb $wpdb
+ * @global wpdb $wpdb WordPress database abstraction object.
  *
  * @param int      $network_id ID of the network. Can be null to default to the current network ID.
  * @param string   $option     Name of option to retrieve. Expected to not be SQL-escaped.
@@ -1326,7 +1326,7 @@
  *
  * @see add_option()
  *
- * @global wpdb $wpdb
+ * @global wpdb $wpdb WordPress database abstraction object.
  *
  * @param int    $network_id ID of the network. Can be null to default to the current network ID.
  * @param string $option     Name of option to add. Expected to not be SQL-escaped.
@@ -1448,7 +1448,7 @@
  *
  * @see delete_option()
  *
- * @global wpdb $wpdb
+ * @global wpdb $wpdb WordPress database abstraction object.
  *
  * @param int    $network_id ID of the network. Can be null to default to the current network ID.
  * @param string $option     Name of option to remove. Expected to not be SQL-escaped.
@@ -1541,7 +1541,7 @@
  *
  * @see update_option()
  *
- * @global wpdb $wpdb
+ * @global wpdb $wpdb WordPress database abstraction object.
  *
  * @param int      $network_id ID of the network. Can be null to default to the current network ID.
  * @param string   $option     Name of option. Expected to not be SQL-escaped.
Index: src/wp-includes/post-template.php
===================================================================
--- src/wp-includes/post-template.php	(revision 44362)
+++ src/wp-includes/post-template.php	(working copy)
@@ -583,7 +583,7 @@
  *
  * @since 2.8.0
  *
- * @global WP_Query $wp_query
+ * @global WP_Query $wp_query Global WP_Query instance.
  *
  * @param string|string[] $class Space-separated string or array of class names to add to the class list.
  * @return string[] Array of class names.
@@ -1204,7 +1204,7 @@
  *
  * @see get_pages()
  *
- * @global WP_Query $wp_query
+ * @global WP_Query $wp_query Global WP_Query instance.
  *
  * @param array|string $args {
  *     Optional. Array or string of arguments to generate a list of pages. See `get_pages()` for additional arguments.
Index: src/wp-includes/post-thumbnail-template.php
===================================================================
--- src/wp-includes/post-thumbnail-template.php	(revision 44362)
+++ src/wp-includes/post-thumbnail-template.php	(working copy)
@@ -71,7 +71,7 @@
  *
  * @since 3.2.0
  *
- * @global WP_Query $wp_query
+ * @global WP_Query $wp_query Global WP_Query instance.
  *
  * @param WP_Query $wp_query Optional. A WP_Query instance. Defaults to the $wp_query global.
  */
Index: src/wp-includes/script-loader.php
===================================================================
--- src/wp-includes/script-loader.php	(revision 44362)
+++ src/wp-includes/script-loader.php	(working copy)
@@ -2611,7 +2611,7 @@
  *
  * @since 5.0.0
  *
- * @global WP_Screen $current_screen
+ * @global WP_Screen $current_screen The WordPress Current screen object.
  */
 function wp_common_block_scripts_and_styles() {
 	global $current_screen;
@@ -2645,7 +2645,7 @@
  *
  * @since 5.0.0
  *
- * @global WP_Screen $current_screen
+ * @global WP_Screen $current_screen The WordPress Current screen object.
  */
 function wp_enqueue_registered_block_scripts_and_styles() {
 	global $current_screen;
Index: src/wp-includes/template.php
===================================================================
--- src/wp-includes/template.php	(revision 44362)
+++ src/wp-includes/template.php	(working copy)
@@ -668,9 +668,9 @@
  * @global array      $posts
  * @global WP_Post    $post
  * @global bool       $wp_did_header
- * @global WP_Query   $wp_query
+ * @global WP_Query   $wp_query      Global WP_Query instance.
  * @global WP_Rewrite $wp_rewrite
- * @global wpdb       $wpdb
+ * @global wpdb       $wpdb          WordPress database abstraction object.
  * @global string     $wp_version
  * @global WP         $wp
  * @global int        $id
Index: src/wp-includes/theme.php
===================================================================
--- src/wp-includes/theme.php	(revision 44362)
+++ src/wp-includes/theme.php	(working copy)
@@ -265,7 +265,7 @@
  *
  * @since 2.1.0
  *
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale The WordPress date and time locale object.
  *
  * @return string
  */
@@ -3231,7 +3231,7 @@
  * @param string   $new_status Transition to this post status.
  * @param string   $old_status Previous post status.
  * @param \WP_Post $post       Post data.
- * @global wpdb $wpdb
+ * @global wpdb $wpdb WordPress database abstraction object.
  */
 function _wp_keep_alive_customize_changeset_dependent_auto_drafts( $new_status, $old_status, $post ) {
 	global $wpdb;
Index: src/wp-includes/update.php
===================================================================
--- src/wp-includes/update.php	(revision 44362)
+++ src/wp-includes/update.php	(working copy)
@@ -15,7 +15,7 @@
  *
  * @since 2.3.0
  * @global string $wp_version Used to check against the newest WordPress version.
- * @global wpdb   $wpdb
+ * @global wpdb   $wpdb WordPress database abstraction object.
  * @global string $wp_local_package
  *
  * @param array $extra_stats Extra statistics to report to the WordPress.org API.
Index: src/wp-settings.php
===================================================================
--- src/wp-settings.php	(revision 44362)
+++ src/wp-settings.php	(working copy)
@@ -398,7 +398,7 @@
  * Holds the reference to @see $wp_the_query
  * Use this global for WordPress queries
  *
- * @global WP_Query $wp_query
+ * @global WP_Query $wp_query Global WP_Query instance.
  * @since 1.5.0
  */
 $GLOBALS['wp_query'] = $GLOBALS['wp_the_query'];
@@ -458,7 +458,7 @@
 /**
  * WordPress Locale object for loading locale domain date and various strings.
  *
- * @global WP_Locale $wp_locale
+ * @global WP_Locale $wp_locale The WordPress date and time locale object.
  * @since 2.1.0
  */
 $GLOBALS['wp_locale'] = new WP_Locale();
