diff --git a/wp-admin/includes/file.php b/wp-admin/includes/file.php index af7def5aae..f9f5be10ce 100644 --- a/wp-admin/includes/file.php +++ b/wp-admin/includes/file.php @@ -2365,8 +2365,8 @@ function wp_opcache_invalidate( $filepath, $force = false ) { * * @since 5.5.0 * - * @param bool $will_invalidate Whether WordPress will invalidate `$filename`. Default true. - * @param string $filename The PHP filename to invalidate. + * @param bool $will_invalidate Whether WordPress will invalidate `$filepath`. Default true. + * @param string $filepath The path to the PHP file to invalidate. */ if ( apply_filters( 'wp_opcache_invalidate_file', true, $filepath ) ) { return opcache_invalidate( $filepath, $force ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 32fe43a31d..4ef99ea1dd 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-beta3-48631'; +$wp_version = '5.5-beta3-48632'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.