8
0
Aleksander Nowodzinski 6 лет назад
Родитель
Сommit
e382e44b35

+ 1 - 1
packages/ckeditor5-remove-format/src/removeformat.js

@@ -18,7 +18,7 @@ import RemoveFormatCommand from './removeformatcommand';
  * This is a "glue" plugin which loads the {@link module:remove-format/removeformatcommand~RemoveFormatCommand command}
  * and the {@link module:remove-format/removeformatui~RemoveFormatUI UI}.
  *
- * For a detailed overview, check out the {@glink features/remove-format Remove Format feature} documentation.
+ * For a detailed overview, check out the {@glink features/remove-format Remove Format} feature documentation.
  *
  * @extends module:core/plugin~Plugin
  */

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

@@ -28,7 +28,7 @@ const removableAttributes = [
  * The remove format command.
  *
  * It is used by the {@link module:remove-format/removeformat~RemoveFormat remove format feature}
- * to clear the formatting within the selection.
+ * to clear the formatting in the selection.
  *
  *		editor.execute( 'removeFormat' );
  *

+ 1 - 1
packages/ckeditor5-remove-format/src/removeformatui.js

@@ -39,7 +39,7 @@ export default class RemoveFormatUI extends Plugin {
 			const view = new ButtonView( locale );
 
 			view.set( {
-				label: t( 'Remove format' ),
+				label: t( 'Remove Format' ),
 				icon: removeFormatIcon,
 				tooltip: true
 			} );