浏览代码

Fixed: Autoformat functions names.

Maksymilian Barnaś 9 年之前
父节点
当前提交
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,