From a8d2e6ba40b48217903a6bd1bc5dd5e1b277d750 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 16 May 2021 08:43:21 +0000 Subject: [PATCH] Docs: Update documentation in `wp-config-sample.php` per the documentation standards. See #52628. git-svn-id: https://develop.svn.wordpress.org/trunk@50918 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-config-sample.php | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/wp-config-sample.php b/wp-config-sample.php index a93e572fcb..85691d2bfc 100644 --- a/wp-config-sample.php +++ b/wp-config-sample.php @@ -2,9 +2,9 @@ /** * The base configuration for WordPress * - * The wp-config.php creation script uses this file during the - * installation. You don't have to use the web site, you can - * copy this file to "wp-config.php" and fill in the values. + * The wp-config.php creation script uses this file during the installation. + * You don't have to use the web site, you can copy this file to "wp-config.php" + * and fill in the values. * * This file contains the following configurations: * @@ -31,18 +31,20 @@ define( 'DB_PASSWORD', 'password_here' ); /** MySQL hostname */ define( 'DB_HOST', 'localhost' ); -/** Database Charset to use in creating database tables. */ +/** Database charset to use in creating database tables. */ define( 'DB_CHARSET', 'utf8' ); -/** The Database Collate type. Don't change this if in doubt. */ +/** The database collate type. Don't change this if in doubt. */ define( 'DB_COLLATE', '' ); /**#@+ - * Authentication Unique Keys and Salts. + * Authentication unique keys and salts. * - * Change these to different unique phrases! - * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service} - * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again. + * Change these to different unique phrases! You can generate these using + * the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}. + * + * You can change these at any point in time to invalidate all existing cookies. + * This will force all users to have to log in again. * * @since 2.6.0 */ @@ -58,7 +60,7 @@ define( 'NONCE_SALT', 'put your unique phrase here' ); /**#@-*/ /** - * WordPress Database Table prefix. + * WordPress database table prefix. * * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! @@ -83,7 +85,7 @@ define( 'WP_DEBUG', false ); -/** Custom Values must appear above this line. That's all, stop editing! Happy publishing. */ +/** Custom values must be above this line. That's all, stop editing! Happy publishing. */ /** Absolute path to the WordPress directory. */ if ( ! defined( 'ABSPATH' ) ) {