Piotrek Koszuliński 7 년 전
부모
커밋
2bd9707fde
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/ckeditor5-engine/src/view/containerelement.js

+ 1 - 1
packages/ckeditor5-engine/src/view/containerelement.js

@@ -83,7 +83,7 @@ function getFillerOffset() {
 	const children = [ ...this.getChildren() ];
 	const lastChild = children[ this.childCount - 1 ];
 
-	// Block filler is required after the `<br>` element if the element is the last child in the container. See #1422.
+	// Block filler is required after a `<br>` if it's the last element in its container. See #1422.
 	if ( lastChild && lastChild.is( 'element', 'br' ) ) {
 		return this.childCount;
 	}