Oskar Wrobel před 9 roky
rodič
revize
15fc1f62dd
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      packages/ckeditor5-utils/src/config.js

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

@@ -168,11 +168,11 @@ export default class Config {
 	/**
 	 * Get specified configuration from specified source (nested object).
 	 *
-     * @private
+	 * @private
 	 * @param {Object} source level of nested object.
 	 * @param {String} name The configuration name. Configuration names are case-insensitive.
 	 * @returns {*} The configuration value or `undefined` if the configuration entry was not found.
-     */
+	 */
 	_getFromSource( source, name ) {
 		// The configuration name should be split into parts if it has dots. E.g. `resize.width` -> [`resize`, `width`].
 		const parts = name.toLowerCase().split( '.' );