diff --git src/wp-admin/includes/template.php src/wp-admin/includes/template.php
index d8ee91d7ec..97ae71d278 100644
--- src/wp-admin/includes/template.php
+++ src/wp-admin/includes/template.php
@@ -1750,10 +1750,10 @@ function add_settings_field( $id, $title, $callback, $page, $section = 'default'
  * Part of the Settings API. Use this in a settings page callback function
  * to output all the sections and fields that were added to that $page with
  * add_settings_section() and add_settings_field()
- *
+ * @since 2.7.0
+ * 
  * @global array $wp_settings_sections Storage array of all settings sections added to admin pages.
  * @global array $wp_settings_fields Storage array of settings fields and info about their pages/sections.
- * @since 2.7.0
  *
  * @param string $page The slug name of the page whose settings sections you want to output.
  */
@@ -1800,9 +1800,9 @@ function do_settings_sections( $page ) {
  * a specific section. Should normally be called by do_settings_sections()
  * rather than directly.
  *
- * @global array $wp_settings_fields Storage array of settings fields and their pages/sections.
- *
  * @since 2.7.0
+ * 
+ * @global array $wp_settings_fields Storage array of settings fields and their pages/sections.
  *
  * @param string $page Slug title of the admin page whose settings fields you want to show.
  * @param string $section Slug title of the settings section whose fields you want to show.
diff --git src/wp-includes/ms-settings.php src/wp-includes/ms-settings.php
index fbe0ea2618..20f7d4e706 100644
--- src/wp-includes/ms-settings.php
+++ src/wp-includes/ms-settings.php
@@ -5,9 +5,10 @@
  *
  * Allows for some configuration in wp-config.php (see ms-default-constants.php)
  *
+ * @since 3.0.0
  * @package WordPress
  * @subpackage Multisite
- * @since 3.0.0
+ *
  */
 
 // Don't load directly.
@@ -21,6 +22,8 @@ if ( ! defined( 'ABSPATH' ) ) {
  * These may be populated through a custom `sunrise.php`. If not, then this
  * file will attempt to populate them based on the current request.
  *
+ * @since 3.0.0
+ * 
  * @global WP_Network $current_site The current network.
  * @global object     $current_blog The current site.
  * @global string     $domain       Deprecated. The domain of the site found on load.
@@ -32,8 +35,9 @@ if ( ! defined( 'ABSPATH' ) ) {
  * @global bool       $public       Deprecated. Whether the site found on load is public.
  *                                  Use `get_site()->public` instead.
  *
- * @since 3.0.0
+ *
  */
+
 global $current_site, $current_blog, $domain, $path, $site_id, $public;
 
 /** WP_Network class */
diff --git src/wp-includes/option.php src/wp-includes/option.php
index bb790673f7..66a615258b 100644
--- src/wp-includes/option.php
+++ src/wp-includes/option.php
@@ -1629,10 +1629,10 @@ function set_transient( $transient, $value, $expiration = 0 ) {
  * The multi-table delete syntax is used to delete the transient record
  * from table a, and the corresponding transient_timeout record from table b.
  *
- * @global wpdb $wpdb WordPress database abstraction object.
- *
  * @since 4.9.0
- *
+ * 
+ * @global wpdb $wpdb WordPress database abstraction object.
+ * 
  * @param bool $force_db Optional. Force cleanup to run against the database even when an external object cache is used.
  */
 function delete_expired_transients( $force_db = false ) {
