Parcourir la source

Align code comments to team code style.

Maciej il y a 5 ans
Parent
commit
5f7e1689fb
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  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';
 	}