Skip to content

Commit a8704dd

Browse files
authored
Fix cache add command example argument order
1 parent bd6db2e commit a8704dd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Cache_Command.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ class Cache_Command extends WP_CLI_Command {
5656
* ## EXAMPLES
5757
*
5858
* # Add cache.
59-
* $ wp cache add my_key my_group my_value 300
60-
* Success: Added object 'my_key' in group 'my_value'.
59+
* $ wp cache add my_key my_value my_group 300
60+
* Success: Added object 'my_key' in group 'my_group'.
6161
*
6262
* @param array{string, string, string, string} $args Positional arguments.
6363
* @param array<mixed> $assoc_args Associative arguments.

0 commit comments

Comments
 (0)