wp/wp-includes/ms-load.php
changeset 19 3d72ae0968f4
parent 18 be944660c56a
child 21 48c4eec2b7e6
--- a/wp/wp-includes/ms-load.php	Wed Sep 21 18:19:35 2022 +0200
+++ b/wp/wp-includes/ms-load.php	Tue Sep 27 16:37:53 2022 +0200
@@ -127,7 +127,7 @@
 }
 
 /**
- * Retrieve the closest matching network for a domain and path.
+ * Retrieves the closest matching network for a domain and path.
  *
  * @since 3.9.0
  *
@@ -190,7 +190,7 @@
 	$paths[] = '/';
 
 	/**
-	 * Determine a site by its domain and path.
+	 * Determines a site by its domain and path.
 	 *
 	 * This allows one to short-circuit the default logic, perhaps by
 	 * replacing it with a routine that is more optimal for your setup.
@@ -495,7 +495,7 @@
 		__( 'Read the <a href="%s" target="_blank">Debugging a WordPress Network</a> article. Some of the suggestions there may help you figure out what went wrong.' ),
 		__( 'https://wordpress.org/support/article/debugging-a-wordpress-network/' )
 	);
-	$msg .= ' ' . __( 'If you&#8217;re still stuck with this message, then check that your database contains the following tables:' ) . '</p><ul>';
+	$msg .= ' ' . __( 'If you are still stuck with this message, then check that your database contains the following tables:' ) . '</p><ul>';
 	foreach ( $wpdb->tables( 'global' ) as $t => $table ) {
 		if ( 'sitecategories' === $t ) {
 			continue;
@@ -546,10 +546,10 @@
 }
 
 /**
- * Retrieve an object containing information about the requested network.
+ * Retrieves an object containing information about the requested network.
  *
  * @since 3.9.0
- * @deprecated 4.7.0 Use `get_network()`
+ * @deprecated 4.7.0 Use get_network()
  * @see get_network()
  *
  * @internal In 4.6.0, converted to use get_network()