Docs: Use third-person singular verbs for function descriptions in the WP_Network class.

See #55646.

Built from https://develop.svn.wordpress.org/trunk@53397


git-svn-id: http://core.svn.wordpress.org/trunk@52986 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
audrasjb 2022-05-15 20:28:07 +00:00
parent 313f6f8fe0
commit 200283a99e
2 changed files with 7 additions and 7 deletions

View File

@ -82,7 +82,7 @@ class WP_Network {
public $site_name = '';
/**
* Retrieve a network from the database by its ID.
* Retrieves a network from the database by its ID.
*
* @since 4.4.0
*
@ -119,7 +119,7 @@ class WP_Network {
}
/**
* Create a new WP_Network object.
* Creates a new WP_Network object.
*
* Will populate object properties from the object provided and assign other
* default properties based on that information.
@ -279,7 +279,7 @@ class WP_Network {
}
/**
* Set the site name assigned to the network if one has not been populated.
* Sets the site name assigned to the network if one has not been populated.
*
* @since 4.4.0
*/
@ -293,7 +293,7 @@ class WP_Network {
}
/**
* Set the cookie domain based on the network domain if one has
* Sets the cookie domain based on the network domain if one has
* not been populated.
*
* @todo What if the domain of the network doesn't match the current site?
@ -312,7 +312,7 @@ class WP_Network {
}
/**
* Retrieve the closest matching network for a domain and path.
* Retrieves the closest matching network for a domain and path.
*
* This will not necessarily return an exact match for a domain and path. Instead, it
* breaks the domain and path into pieces that are then used to match the closest
@ -392,7 +392,7 @@ class WP_Network {
}
/**
* Determine a network by its domain and path.
* Determines a network 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.

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.1-alpha-53396';
$wp_version = '6.1-alpha-53397';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.