Skip to content

Commit

Permalink
Delete empty space (#21453)
Browse files Browse the repository at this point in the history
  • Loading branch information
Soean authored Apr 13, 2020
1 parent 9fd1c69 commit de08554
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/class-wp-rest-menu-items-controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,7 @@ public function get_item_schema() {
);

$schema['properties']['object_id'] = array(
'description' => __( 'The DB ID of the original object this menu item represents, e . g . ID for posts and term_id for categories .', 'gutenberg' ),
'description' => __( 'The DB ID of the original object this menu item represents, e . g . ID for posts and term_id for categories.', 'gutenberg' ),
'context' => array( 'view', 'edit', 'embed' ),
'type' => 'integer',
'minimum' => 0,
Expand Down Expand Up @@ -899,7 +899,7 @@ public function get_item_schema() {
);

$schema['properties']['_invalid'] = array(
'description' => __( 'Whether the menu item represents an object that no longer exists .', 'gutenberg' ),
'description' => __( 'Whether the menu item represents an object that no longer exists.', 'gutenberg' ),
'context' => array( 'view', 'edit', 'embed' ),
'type' => 'boolean',
'readonly' => true,
Expand Down

0 comments on commit de08554

Please sign in to comment.