Skip to content

Commit e3253aa

Browse files
authored
Merge pull request #454 from ernilambar/fix-typos
2 parents eac6762 + 62d0a9b commit e3253aa

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/Option_Command.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public function get( $args, $assoc_args ) {
9494
* : The name of the option to add.
9595
*
9696
* [<value>]
97-
* : The value of the option to add. If ommited, the value is read from STDIN.
97+
* : The value of the option to add. If omitted, the value is read from STDIN.
9898
*
9999
* [--format=<format>]
100100
* : The serialization format for the value.
@@ -354,7 +354,7 @@ function ( $a, $b ) use ( $orderby, $order ) {
354354
* : The name of the option to update.
355355
*
356356
* [<value>]
357-
* : The new value. If ommited, the value is read from STDIN.
357+
* : The new value. If omitted, the value is read from STDIN.
358358
*
359359
* [--autoload=<autoload>]
360360
* : Requires WP 4.2. Should this option be automatically loaded.

src/Post_Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ private function maybe_make_child() {
912912
}
913913

914914
private function maybe_reset_depth() {
915-
// 10% chance of reseting to root depth,
915+
// 10% chance of resetting to root depth,
916916
return ( wp_rand( 1, 10 ) === 7 );
917917
}
918918

src/Site_Option_Command.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function get( $args, $assoc_args ) {
7272
* : The name of the site option to add.
7373
*
7474
* [<value>]
75-
* : The value of the site option to add. If ommited, the value is read from STDIN.
75+
* : The value of the site option to add. If omitted, the value is read from STDIN.
7676
*
7777
* [--format=<format>]
7878
* : The serialization format for the value.
@@ -147,7 +147,7 @@ public function add( $args, $assoc_args ) {
147147
*
148148
* ## EXAMPLES
149149
*
150-
* # List all site options begining with "i2f_"
150+
* # List all site options beginning with "i2f_"
151151
* $ wp site option list --search="i2f_*"
152152
* +-------------+--------------+
153153
* | meta_key | meta_value |
@@ -214,7 +214,7 @@ public function list_( $args, $assoc_args ) {
214214
* : The name of the site option to update.
215215
*
216216
* [<value>]
217-
* : The new value. If ommited, the value is read from STDIN.
217+
* : The new value. If omitted, the value is read from STDIN.
218218
*
219219
* [--format=<format>]
220220
* : The serialization format for the value.

src/Term_Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ private function maybe_make_child() {
744744
}
745745

746746
private function maybe_reset_depth() {
747-
// 10% chance of reseting to root depth.
747+
// 10% chance of resetting to root depth.
748748
return ( wp_rand( 1, 10 ) === 7 );
749749
}
750750

0 commit comments

Comments
 (0)