diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 6a4d3e5151..363316216d 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -4593,7 +4593,7 @@ function wp_array_slice_assoc( $array, $keys ) { * ), * ), * ); - * _wp_array_get( $array, array( 'a', 'b', 'c' ); + * _wp_array_get( $array, array( 'a', 'b', 'c' ) ); * * @internal * @@ -4635,7 +4635,7 @@ function _wp_array_get( $array, $path, $default = null ) { * Example usage: * * $array = array(); - * _wp_array_set( $array, array( 'a', 'b', 'c', 1 ); + * _wp_array_set( $array, array( 'a', 'b', 'c', 1 ) ); * * $array becomes: * array( diff --git a/wp-includes/version.php b/wp-includes/version.php index 8a29cccae1..6d111dbbc5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-51040'; +$wp_version = '5.8-alpha-51041'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.