diff --git a/plugin-name/trunk/includes/class-plugin-name.php b/plugin-name/trunk/includes/class-plugin-name.php index 0ae7a13..8d960d4 100644 --- a/plugin-name/trunk/includes/class-plugin-name.php +++ b/plugin-name/trunk/includes/class-plugin-name.php @@ -17,9 +17,13 @@ */ /** - * Short Description. (use period) + * The core plugin file. * - * Long Description. + * This is the core plugin file that is used to define internationalization, + * dashboard-specific hooks, and public-facing site hooks. + * + * Also maintains the unique identifier of this plugin as well as the current + * version of the plugin. * * @since 1.0.0 * @package Plugin_Name diff --git a/plugin-name/trunk/plugin-name.php b/plugin-name/trunk/plugin-name.php index daa49dc..5b800cb 100644 --- a/plugin-name/trunk/plugin-name.php +++ b/plugin-name/trunk/plugin-name.php @@ -45,8 +45,8 @@ register_activation_hook( __FILE__, array( 'Plugin_Name_Activator', 'activate' ) register_activation_hook( __FILE__, array( 'Plugin_Name_Deactivator', 'deactivate' ) ); /** - * The base class used to define certain functionality and attributes used in both - * the the dashboard-specific and public-facing functionality. + * This is the core plugin file that is used to define internationalization, + * dashboard-specific hooks, and public-facing site hooks. */ require_once plugin_dir_path( __FILE__ ) . 'includes/class-plugin-name.php';