소스 검색

Docs: TreeProxy.

Szymon Cofalik 9 년 전
부모
커밋
5a2dce01b2
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      packages/ckeditor5-engine/src/treemodel/textproxy.js

+ 3 - 3
packages/ckeditor5-engine/src/treemodel/textproxy.js

@@ -133,7 +133,7 @@ export default class TextProxy {
 	/**
 	 * Removes all attributes from the text fragment and sets given attributes.
 	 *
-	 * **Note:** Changing attributes of text fragment affects document state. This TextProxy instance properties
+	 * **Note:** Changing attributes of text fragment affects document state. This `TextProxy` instance properties
 	 * will be refreshed, but other may get invalidated. It is highly unrecommended to store references to TextProxy instances.
 	 *
 	 * @param {Iterable|Object} attrs Iterable object containing attributes to be set.
@@ -152,7 +152,7 @@ export default class TextProxy {
 	/**
 	 * Removes an attribute with given key from the text fragment.
 	 *
-	 * **Note:** Changing attributes of text fragment affects document state. This TextProxy instance properties
+	 * **Note:** Changing attributes of text fragment affects document state. This `TextProxy` instance properties
 	 * will be refreshed, but other may get invalidated. It is highly unrecommended to store references to TextProxy instances.
 	 *
 	 * @param {String} key Key of attribute to remove.
@@ -164,7 +164,7 @@ export default class TextProxy {
 	/**
 	 * Removes all attributes from the text fragment.
 	 *
-	 * **Note:** Changing attributes of text fragment affects document state. This TextProxy instance properties
+	 * **Note:** Changing attributes of text fragment affects document state. This `TextProxy` instance properties
 	 * will be refreshed, but other may get invalidated. It is highly unrecommended to store references to TextProxy instances.
 	 */
 	clearAttributes() {