8
0
فهرست منبع

Docs: Use format word more consistently. [skip ci]

There were references to it as "styles" sometimes.
Marek Lewandowski 6 سال پیش
والد
کامیت
6afb8fc6f8
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      packages/ckeditor5-remove-format/src/removeformatcommand.js

+ 2 - 2
packages/ckeditor5-remove-format/src/removeformatcommand.js

@@ -56,7 +56,7 @@ export default class RemoveFormatCommand extends Command {
 	}
 
 	/**
-	 * Yields items from a selection (including selection itself) that contain styles to be removed
+	 * Yields items from a selection (including selection itself) that contain format to be removed
 	 * by the remove format feature.
 	 *
 	 * @protected
@@ -77,7 +77,7 @@ export default class RemoveFormatCommand extends Command {
 			}
 		}
 
-		// Finally the selection might be styles as well, so make sure to check it.
+		// Finally the selection might be formatted as well, so make sure to check it.
 		if ( itemHasRemovableFormatting( selection ) ) {
 			yield selection;
 		}