Explorar el Código

Fixed indents.

Oskar Wrobel hace 9 años
padre
commit
15fc1f62dd
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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( '.' );