diff --git a/core/modules/language/language.module b/core/modules/language/language.module index 6c39a44..d60e209 100644 --- a/core/modules/language/language.module +++ b/core/modules/language/language.module @@ -384,7 +384,7 @@ function language_clear_default_configuration($entity_type, $bundle) { * The root name of the variables. */ function language_get_default_configuration_settings_key($entity_type, $bundle) { - // Replace all the caracters that are not letters, numbers or "_" with "_". + // Replace all the characters that are not letters, numbers or "_" with "_". $entity_type = preg_replace('/[^0-9a-zA-Z_]/',"_",$entity_type); $bundle = preg_replace('/[^0-9a-zA-Z_]/',"_",$bundle); return $entity_type . '.' . $bundle . '.language.default_configuration';