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

+ 1 - 1
packages/ckeditor5-font/docs/_snippets/features/custom-font-size-numeric-options.html

@@ -1,5 +1,5 @@
 <div id="snippet-custom-font-size-numeric-options">
-	<h2>Font Size feature numeric options sample.</h2>
+	<h2>Font Size feature numerical options sample.</h2>
 
 	<p><span style="font-size: 9px">9px</span></p>
 	<p><span style="font-size: 11px">11px</span></p>

+ 1 - 1
packages/ckeditor5-font/docs/features/font.md

@@ -242,7 +242,7 @@ The {@link module:font/fontsize~FontSize} plugin registers the following compone
 	You can change the font size of the current selection by executing the command with a desired value:
 
 	```js
-	// For numeric values:
+	// For numerical values:
 	editor.execute( 'fontSize', { value: 10 } );
 
 	// For named presets:

+ 1 - 1
packages/ckeditor5-font/tests/fontsize/fontsizeui.js

@@ -151,7 +151,7 @@ describe( 'FontSizeUI', () => {
 				} );
 			} );
 
-			describe( 'using numeric values', () => {
+			describe( 'using numerical values', () => {
 				beforeEach( () => {
 					element = document.createElement( 'div' );
 					document.body.appendChild( element );

+ 1 - 1
packages/ckeditor5-font/tests/fontsize/utils.js

@@ -37,7 +37,7 @@ describe( 'FontSizeEditing Utils', () => {
 			} );
 		} );
 
-		describe( 'numeric presets', () => {
+		describe( 'numerical presets', () => {
 			it( 'should return generated presets', () => {
 				expect( normalizeOptions( [ '10', 12, 'default', '14.1', 18.3 ] ) ).to.deep.equal( [
 					{ title: '10', model: 10, view: { name: 'span', style: { 'font-size': '10px' } } },