From 3bb619318e22168bbf32c5a6e3bb80323dd4de2d Mon Sep 17 00:00:00 2001 From: Kelly Redmond <56650147+kelsu02@users.noreply.github.com> Date: Tue, 14 Jul 2020 14:07:22 -0600 Subject: [PATCH] Update nested-blocks-inner-blocks.md (#23935) Line 72 added the word blocks to the second sentence in-between the and that. --- .../tutorials/block-tutorial/nested-blocks-inner-blocks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/designers-developers/developers/tutorials/block-tutorial/nested-blocks-inner-blocks.md b/docs/designers-developers/developers/tutorials/block-tutorial/nested-blocks-inner-blocks.md index b28d72fd2b1191..cc538c8ccde854 100644 --- a/docs/designers-developers/developers/tutorials/block-tutorial/nested-blocks-inner-blocks.md +++ b/docs/designers-developers/developers/tutorials/block-tutorial/nested-blocks-inner-blocks.md @@ -68,7 +68,7 @@ registerBlockType( 'gutenberg-examples/example-06', { ## Allowed Blocks -Using the `ALLOWED_BLOCKS` property, you can define the set of blocks allowed in your InnerBlock. This restricts the that can be included only to those listed, all other blocks will not show in the inserter. +Using the `ALLOWED_BLOCKS` property, you can define the set of blocks allowed in your InnerBlock. This restricts the blocks that can be included only to those listed, all other blocks will not show in the inserter. ```js const ALLOWED_BLOCKS = [ 'core/image', 'core/paragraph' ];