diff --git a/.github/settings.yml b/.github/settings.yml index 45aae554b..8151ac66a 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -1,6 +1,6 @@ # Used by Probot Settings: https://probot.github.io/apps/settings/ repository: - description: Manage the wp-config.php file. + description: Generates and reads the wp-config.php file. labels: - name: bug color: fc2929 diff --git a/README.md b/README.md index 01821afaa..09e476b41 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ wp-cli/config-command ===================== -Manage the wp-config.php file. +Generates and reads the wp-config.php file. [![Build Status](https://travis-ci.org/wp-cli/config-command.svg?branch=master)](https://travis-ci.org/wp-cli/config-command) @@ -13,7 +13,7 @@ This package implements the following commands: ### wp config -Creates and retrieves the wp-config.php file. +Generates and reads the wp-config.php file. ~~~ wp config diff --git a/composer.json b/composer.json index c1bde6341..c6954a2b5 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "wp-cli/config-command", - "description": "Manage the wp-config.php file.", + "description": "Generates and reads the wp-config.php file.", "type": "wp-cli-package", "homepage": "https://github.com/wp-cli/config-command", "support": { diff --git a/src/Config_Command.php b/src/Config_Command.php index 72e753196..1c9d5e62e 100644 --- a/src/Config_Command.php +++ b/src/Config_Command.php @@ -2,7 +2,7 @@ use \WP_CLI\Utils; /** - * Creates and retrieves the wp-config.php file. + * Generates and reads the wp-config.php file. */ class Config_Command extends WP_CLI_Command {