8
0
Просмотр исходного кода

Fixed: Autoformat functions names.

Maksymilian Barnaś 9 лет назад
Родитель
Сommit
bcea556b36
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      packages/ckeditor5-autoformat/src/autoformat.js

+ 2 - 2
packages/ckeditor5-autoformat/src/autoformat.js

@@ -33,7 +33,7 @@ export default class Autoformat extends Feature {
 	init() {
 		this._addListAutoformats();
 		this._addHeadingAutoformats();
-		this._addBoldAutoformats();
+		this._addInlineAutoformats();
 	}
 
 	/**
@@ -76,7 +76,7 @@ export default class Autoformat extends Feature {
 		} );
 	}
 
-	_addBoldAutoformats() {
+	_addInlineAutoformats() {
 		// Bold autoformat.
 		new InlineAutoformatEngine(
 			this.editor,