Coding Standards: Remove redundant semicolons after closing curly brackets.

Props jrf.
See #53359.
Built from https://develop.svn.wordpress.org/trunk@51552


git-svn-id: http://core.svn.wordpress.org/trunk@51163 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2021-08-05 13:15:55 +00:00
parent d289b7f602
commit 815e31f611
2 changed files with 3 additions and 3 deletions

View File

@ -3265,7 +3265,7 @@ function wp_init_targeted_link_rel_filters() {
foreach ( $filters as $filter ) { foreach ( $filters as $filter ) {
add_filter( $filter, 'wp_targeted_link_rel' ); add_filter( $filter, 'wp_targeted_link_rel' );
}; }
} }
/** /**
@ -3288,7 +3288,7 @@ function wp_remove_targeted_link_rel_filters() {
foreach ( $filters as $filter ) { foreach ( $filters as $filter ) {
remove_filter( $filter, 'wp_targeted_link_rel' ); remove_filter( $filter, 'wp_targeted_link_rel' );
}; }
} }
/** /**

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.9-alpha-51551'; $wp_version = '5.9-alpha-51552';
/** /**
* 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.