Fix copy/paste errors in [27769].

props Corphi.
fixes #30054.

git-svn-id: https://develop.svn.wordpress.org/trunk@29977 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2014-10-20 21:34:51 +00:00
parent 74f1fad31d
commit 4ea9070f8a
1 changed files with 5 additions and 5 deletions

View File

@ -558,11 +558,11 @@ function activate_plugin( $plugin, $redirect = '', $network_wide = false, $silen
do_action( 'activate_plugin', $plugin, $network_wide );
/**
* Fires as a specific plugin is being deactivated.
* Fires as a specific plugin is being activated.
*
* This hook is the "deactivation" hook used internally by
* register_deactivation_hook(). The dynamic portion of the
* hook name, $plugin. refers to the plugin basename.
* This hook is the "activation" hook used internally by
* register_activation_hook(). The dynamic portion of the
* hook name, $plugin, refers to the plugin basename.
*
* If a plugin is silently activated (such as during an update),
* this hook does not fire.
@ -675,7 +675,7 @@ function deactivate_plugins( $plugins, $silent = false, $network_wide = null ) {
*
* This hook is the "deactivation" hook used internally by
* register_deactivation_hook(). The dynamic portion of the
* hook name, $plugin. refers to the plugin basename.
* hook name, $plugin, refers to the plugin basename.
*
* If a plugin is silently deactivated (such as during an update),
* this hook does not fire.