From 2ea9199a6e13ea6128ea8a8aa268df6f0b5b646a Mon Sep 17 00:00:00 2001 From: Andrew Duthie Date: Fri, 29 Jun 2018 10:16:35 -0400 Subject: [PATCH] Blocks: Clarify after split insertion coment --- core-blocks/paragraph/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core-blocks/paragraph/index.js b/core-blocks/paragraph/index.js index 2f42bad2aff138..3d055b765d5d6d 100644 --- a/core-blocks/paragraph/index.js +++ b/core-blocks/paragraph/index.js @@ -161,8 +161,8 @@ class ParagraphBlock extends Component { } = this.props; if ( after ) { - // After content should be appended to the set of spread blocks as - // a new paragraph block to insert after. + // Append "After" content as a new paragraph block to the end of + // any other blocks being inserted after the current paragraph. blocks.push( createBlock( name, { content: after } ) ); }