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 } ) ); }