Browse Source

Align code comments to team code style.

Maciej 5 năm trước cách đây
mục cha
commit
5f7e1689fb
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      packages/ckeditor5-paste-from-office/src/filters/list.js

+ 2 - 1
packages/ckeditor5-paste-from-office/src/filters/list.js

@@ -212,8 +212,9 @@ function findBulletedListStyle( element ) {
 		return 'circle';
 	} else if ( listMarker === '·' ) {
 		return 'disc';
+	}
 	// Word returns '§' instead of '■' for the square list style.
-	} else if ( listMarker === '§' ) {
+	else if ( listMarker === '§' ) {
 		return 'square';
 	}