Browse Source

Minor fixes.

Grzegorz Pabian 10 years ago
parent
commit
ea3118dee0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/ckeditor5-utils/src/config.js

+ 1 - 1
packages/ckeditor5-utils/src/config.js

@@ -137,7 +137,7 @@ CKEDITOR.define( [ 'ckeditor', 'mvc/model', 'utils' ], function( CKEDITOR, Model
 			var source = this;
 			//jscs:enable
 
-			// The configuration name should be split into parts if it has dots. E.g: `resize.width`.
+			// The configuration name should be split into parts if it has dots. E.g. `resize.width` -> [`resize`, `width`]
 			var parts = name.toLowerCase().split( '.' );
 
 			// Take the name of the configuration from the parts. E.g. `resize.width` -> `width`