Skip to content

Commit 0f4c35a

Browse files
Fix missing quote in documentation
1 parent 6f73765 commit 0f4c35a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2864,7 +2864,7 @@ wp post update <id>... [--post_author=<post_author>] [--post_date=<post_date>] [
28642864
Success: Updated post 123.
28652865

28662866
# Update a post with multiple meta values.
2867-
$ wp post update 123 --meta_input='{"key1":"value1","key2":"value2"}
2867+
$ wp post update 123 --meta_input='{"key1":"value1","key2":"value2"}'
28682868
Success: Updated post 123.
28692869

28702870

src/Post_Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ public function create( $args, $assoc_args ) {
281281
* Success: Updated post 123.
282282
*
283283
* # Update a post with multiple meta values.
284-
* $ wp post update 123 --meta_input='{"key1":"value1","key2":"value2"}
284+
* $ wp post update 123 --meta_input='{"key1":"value1","key2":"value2"}'
285285
* Success: Updated post 123.
286286
*/
287287
public function update( $args, $assoc_args ) {

0 commit comments

Comments
 (0)