Explorar el Código

Align code comments to team code style.

Maciej hace 5 años
padre
commit
5f7e1689fb
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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';
 	}