diff --git a/wp-config-sample.php b/wp-config-sample.php index d8469e730f..c095f50f6c 100644 --- a/wp-config-sample.php +++ b/wp-config-sample.php @@ -8,7 +8,7 @@ * * This file contains the following configurations: * - * * MySQL settings + * * Database settings * * Secret keys * * Database table prefix * * ABSPATH @@ -18,17 +18,17 @@ * @package WordPress */ -// ** MySQL settings - You can get this info from your web host ** // +// ** Database settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define( 'DB_NAME', 'database_name_here' ); -/** MySQL database username */ +/** Database username */ define( 'DB_USER', 'username_here' ); -/** MySQL database password */ +/** Database password */ define( 'DB_PASSWORD', 'password_here' ); -/** MySQL hostname */ +/** Database hostname */ define( 'DB_HOST', 'localhost' ); /** Database charset to use in creating database tables. */ diff --git a/wp-includes/version.php b/wp-includes/version.php index 6f37ffde9c..aea536bd06 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-beta2-52366'; +$wp_version = '5.9-beta2-52367'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.