Docs: Miscellaneous DocBlock corrections for plugin and theme updates.

See #49572.
Built from https://develop.svn.wordpress.org/trunk@48446


git-svn-id: http://core.svn.wordpress.org/trunk@48215 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov
2020-07-12 01:19:03 +00:00
parent cecf7b9823
commit 3f1650122a
6 changed files with 18 additions and 18 deletions

View File

@@ -267,13 +267,13 @@ class Theme_Installer_Skin extends WP_Upgrader_Skin {
$table .= '</tbody></table>';
/**
* Filters the compare table output for overwrite a theme package on upload.
* Filters the compare table output for overwriting a theme package on upload.
*
* @since 5.5.0
*
* @param string $table The output table with Name, Version, Author, RequiresWP and RequiresPHP info.
* @param array $current_theme_data Array with current theme data.
* @param array $new_theme_data Array with uploaded theme data.
* @param string $table The output table with Name, Version, Author, RequiresWP, and RequiresPHP info.
* @param array $current_theme_data Array with current theme data.
* @param array $new_theme_data Array with uploaded theme data.
*/
echo apply_filters( 'install_theme_overwrite_comparison', $table, $current_theme_data, $this->upgrader->new_theme_data );