diff options
-rw-r--r-- | modules/system/system.api.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 813d5affd..1b295b4f4 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -2367,7 +2367,7 @@ function hook_flush_caches() { * enable hooks are invoked. * * @param $modules - * An array of the installed modules. + * An array of the modules that were installed. * * @see module_enable() * @see hook_modules_enabled() @@ -2389,7 +2389,7 @@ function hook_modules_installed($modules) { * invoked. * * @param $modules - * An array of the modules being enabled. + * An array of the modules that were enabled. * * @see hook_enable() * @see hook_modules_installed() @@ -2410,7 +2410,7 @@ function hook_modules_enabled($modules) { * is only called on the module actually being disabled. * * @param $modules - * An array of the disabled modules. + * An array of the modules that were disabled. * * @see hook_disable() * @see hook_modules_uninstalled() @@ -2432,7 +2432,7 @@ function hook_modules_disabled($modules) { * data that may have been set by other modules. * * @param $modules - * An array of the uninstalled modules. + * An array of the modules that were uninstalled. * * @see hook_uninstall() * @see hook_modules_disabled() |