Skip to content

Commit

Permalink
Fix typos (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zodiac1978 committed Aug 13, 2023
1 parent 57260a2 commit ed432ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions HealthCheck/Tools/class-health-check-plugin-compatibility.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,15 @@ function get_supported_php( $slug, $version ) {
$tide_versions = get_transient( $transient_name );

if ( false === $tide_versions ) {
$tide_api_respone = wp_remote_get(
$tide_api_response = wp_remote_get(
sprintf(
'https://wptide.org/api/v1/audit/wporg/plugin/%s/%s?reports=all',
$slug,
$version
)
);

$tide_response = wp_remote_retrieve_body( $tide_api_respone );
$tide_response = wp_remote_retrieve_body( $tide_api_response );

$json = json_decode( $tide_response );

Expand Down
4 changes: 2 additions & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
* Added `mbstring` and `json` (again) as requirements to the list of PHP extensions.
* Added a missing toggle to the list of plugins/themes to the troubleshooting dashboard widget.
* Added bulk actions to enable or disable plugins when troubleshooting, or to initiate troubleshooting mode.
* Added plugin compatibility checker ot the tools section.
* Added plugin compatibility checker to the tools section.
* Added a dashboard widget to show your Site Health status at a glance when logging in.
* Added filters for Site Health test results.
* Added WP-CLI support, you can now run `wp health-check status` for a list of test and their status.
Expand Down Expand Up @@ -227,7 +227,7 @@
* Fixed a bunch of PHP warnings

= v 0.2.1 =
* Fixed version comparision bug - When the server had the exact required versions we reported it as out of date.
* Fixed version comparison bug - When the server had the exact required versions we reported it as out of date.

= v 0.2 =
* Updated with actual PHP and MySQL version requirements for WordPress 3.2
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/test-site-status.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function testAsyncTiming() {
);

/**
* Result should be > 100 miliseconds.
* Result should be > 100 milliseconds.
*/
$this->assertGreaterThan(
100,
Expand Down

0 comments on commit ed432ee

Please sign in to comment.