Docs: Use third-person singular verbs in `class-wp-site-health-auto-updates.php`, as per docblocks standards.

See #55646.

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


git-svn-id: http://core.svn.wordpress.org/trunk@53883 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
audrasjb 2022-09-27 10:16:22 +00:00
parent 8cb2e8aa60
commit 32cefdce56
2 changed files with 12 additions and 12 deletions

View File

@ -20,7 +20,7 @@ class WP_Site_Health_Auto_Updates {
/** /**
* Run tests to determine if auto-updates can run. * Runs tests to determine if auto-updates can run.
* *
* @since 5.2.0 * @since 5.2.0
* *
@ -58,7 +58,7 @@ class WP_Site_Health_Auto_Updates {
} }
/** /**
* Test if auto-updates related constants are set correctly. * Tests if auto-updates related constants are set correctly.
* *
* @since 5.2.0 * @since 5.2.0
* @since 5.5.1 The `$value` parameter can accept an array. * @since 5.5.1 The `$value` parameter can accept an array.
@ -84,7 +84,7 @@ class WP_Site_Health_Auto_Updates {
} }
/** /**
* Check if updates are intercepted by a filter. * Checks if updates are intercepted by a filter.
* *
* @since 5.2.0 * @since 5.2.0
* *
@ -106,7 +106,7 @@ class WP_Site_Health_Auto_Updates {
} }
/** /**
* Check if automatic updates are disabled by a filter. * Checks if automatic updates are disabled by a filter.
* *
* @since 5.2.0 * @since 5.2.0
* *
@ -127,7 +127,7 @@ class WP_Site_Health_Auto_Updates {
} }
/** /**
* Check if automatic updates are disabled. * Checks if automatic updates are disabled.
* *
* @since 5.3.0 * @since 5.3.0
* *
@ -151,7 +151,7 @@ class WP_Site_Health_Auto_Updates {
} }
/** /**
* Check if automatic updates have tried to run, but failed, previously. * Checks if automatic updates have tried to run, but failed, previously.
* *
* @since 5.2.0 * @since 5.2.0
* *
@ -197,7 +197,7 @@ class WP_Site_Health_Auto_Updates {
} }
/** /**
* Check if WordPress is controlled by a VCS (Git, Subversion etc). * Checks if WordPress is controlled by a VCS (Git, Subversion etc).
* *
* @since 5.2.0 * @since 5.2.0
* *
@ -267,7 +267,7 @@ class WP_Site_Health_Auto_Updates {
} }
/** /**
* Check if we can access files without providing credentials. * Checks if we can access files without providing credentials.
* *
* @since 5.2.0 * @since 5.2.0
* *
@ -299,7 +299,7 @@ class WP_Site_Health_Auto_Updates {
} }
/** /**
* Check if core files are writable by the web user/group. * Checks if core files are writable by the web user/group.
* *
* @since 5.2.0 * @since 5.2.0
* *
@ -386,7 +386,7 @@ class WP_Site_Health_Auto_Updates {
} }
/** /**
* Check if the install is using a development branch and can use nightly packages. * Checks if the install is using a development branch and can use nightly packages.
* *
* @since 5.2.0 * @since 5.2.0
* *
@ -424,7 +424,7 @@ class WP_Site_Health_Auto_Updates {
} }
/** /**
* Check if the site supports automatic minor updates. * Checks if the site supports automatic minor updates.
* *
* @since 5.2.0 * @since 5.2.0
* *

View File

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