Skip to content

Commit 675869f

Browse files
committed
Replace use of "install" with "installation"
1 parent 45926c9 commit 675869f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/Site_Command.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Creates, deletes, empties, moderates, and lists one or more sites on a multisite install.
4+
* Creates, deletes, empties, moderates, and lists one or more sites on a multisite installation.
55
*
66
* ## EXAMPLES
77
*
@@ -223,7 +223,7 @@ public function _empty( $args, $assoc_args ) {
223223
}
224224

225225
/**
226-
* Deletes a site in a multisite install.
226+
* Deletes a site in a multisite installation.
227227
*
228228
* ## OPTIONS
229229
*
@@ -247,7 +247,7 @@ public function _empty( $args, $assoc_args ) {
247247
*/
248248
function delete( $args, $assoc_args ) {
249249
if ( !is_multisite() ) {
250-
WP_CLI::error( 'This is not a multisite install.' );
250+
WP_CLI::error( 'This is not a multisite installation.' );
251251
}
252252

253253
if ( isset( $assoc_args['slug'] ) ) {
@@ -280,7 +280,7 @@ function delete( $args, $assoc_args ) {
280280
}
281281

282282
/**
283-
* Creates a site in a multisite install.
283+
* Creates a site in a multisite installation.
284284
*
285285
* ## OPTIONS
286286
*
@@ -309,7 +309,7 @@ function delete( $args, $assoc_args ) {
309309
*/
310310
public function create( $_, $assoc_args ) {
311311
if ( !is_multisite() ) {
312-
WP_CLI::error( 'This is not a multisite install.' );
312+
WP_CLI::error( 'This is not a multisite installation.' );
313313
}
314314

315315
global $wpdb, $current_site;
@@ -431,7 +431,7 @@ private function _get_network( $network_id ) {
431431
}
432432

433433
/**
434-
* Lists all sites in a multisite install.
434+
* Lists all sites in a multisite installation.
435435
*
436436
* ## OPTIONS
437437
*
@@ -496,7 +496,7 @@ private function _get_network( $network_id ) {
496496
*/
497497
public function list_( $_, $assoc_args ) {
498498
if ( !is_multisite() ) {
499-
WP_CLI::error( 'This is not a multisite install.' );
499+
WP_CLI::error( 'This is not a multisite installation.' );
500500
}
501501

502502
global $wpdb;

0 commit comments

Comments
 (0)