Skip to content

Commit 6a85863

Browse files
Merge pull request #51 from DrewAPicture/issue/doc-verbs
Convert search-replace subcommand help summaries to use third-person singular verbs.
2 parents d358907 + 7f7cca8 commit 6a85863

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
wp-cli/search-replace-command
22
=============================
33

4-
Search/replace strings in the database.
4+
Searches/replaces strings in the database.
55

66
[![Build Status](https://travis-ci.org/wp-cli/search-replace-command.svg?branch=master)](https://travis-ci.org/wp-cli/search-replace-command)
77

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-cli/search-replace-command",
3-
"description": "Search/replace strings in the database.",
3+
"description": "Searches/replaces strings in the database.",
44
"type": "wp-cli-package",
55
"homepage": "https://github.com/wp-cli/search-replace-command",
66
"support": {

src/Search_Replace_Command.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Search_Replace_Command extends WP_CLI_Command {
2525
private $log_run_data = array();
2626

2727
/**
28-
* Search/replace strings in the database.
28+
* Searches/replaces strings in the database.
2929
*
3030
* Searches through all rows in a selection of tables and replaces
3131
* appearances of the first string with the second string.
@@ -826,7 +826,7 @@ private function log_bits( $search_regex, $old_data, $old_matches, $new ) {
826826
}
827827

828828
/*
829-
* Output the log strings.
829+
* Outputs the log strings.
830830
*
831831
* @param string $col Column being processed.
832832
* @param array $keys Associative array (or object) of primary key names and their values for the row being processed.

0 commit comments

Comments
 (0)