From 6ab901eda4c17f0004e7b227e5d3d4728cfd21e9 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Wed, 24 Aug 2022 15:24:14 +0000 Subject: [PATCH] Docs: Correct typo in `wp_maybe_clean_new_site_cache_on_update()` parameter description. Props kebbet. See #55646. git-svn-id: https://develop.svn.wordpress.org/trunk@53939 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/ms-site.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/ms-site.php b/src/wp-includes/ms-site.php index cdce8ff033..180eb81efe 100644 --- a/src/wp-includes/ms-site.php +++ b/src/wp-includes/ms-site.php @@ -1247,7 +1247,7 @@ function wp_maybe_transition_site_statuses_on_update( $new_site, $old_site = nul * @since 5.1.0 * * @param WP_Site $new_site The site object after the update. - * @param WP_Site $old_site The site obejct prior to the update. + * @param WP_Site $old_site The site object prior to the update. */ function wp_maybe_clean_new_site_cache_on_update( $new_site, $old_site ) { if ( $old_site->domain !== $new_site->domain || $old_site->path !== $new_site->path ) {