소스 검색

Code style: The dots are required at the end of the comment.

Maciej Gołaszewski 8 년 전
부모
커밋
927f9463a4
2개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      packages/ckeditor5-font/src/fontfamily/utils.js
  2. 0 1
      packages/ckeditor5-font/src/fontsize/fontsizeediting.js

+ 1 - 1
packages/ckeditor5-font/src/fontfamily/utils.js

@@ -58,7 +58,7 @@ function generateFontPreset( fontDefinition ) {
 	// Remove quotes from font names. They will be normalized later.
 	const fontNames = fontDefinition.replace( /"|'/g, '' ).split( ',' );
 
-	// The first matched font name will be used as dropdown list item title and as model value
+	// The first matched font name will be used as dropdown list item title and as model value.
 	const firstFontName = fontNames[ 0 ];
 
 	// CSS-compatible font names.

+ 0 - 1
packages/ckeditor5-font/src/fontsize/fontsizeediting.js

@@ -39,7 +39,6 @@ export default class FontSizeEditing extends Plugin {
 			]
 		} );
 
-		// Get configuration
 		const data = editor.data;
 		const editing = editor.editing;