Docs: Use third-person singular verbs for method summaries in `WP_Widget_Factory`.

Fixes #36299.


git-svn-id: https://develop.svn.wordpress.org/trunk@37063 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2016-03-23 04:50:26 +00:00
parent 4d077b3a90
commit cbf08027df
1 changed files with 5 additions and 5 deletions

View File

@ -46,31 +46,31 @@ class WP_Widget_Factory {
}
/**
* Register a widget subclass.
* Registers a widget subclass.
*
* @since 2.8.0
* @access public
*
* @param string $widget_class The name of a {@see WP_Widget} subclass.
* @param string $widget_class The name of a WP_Widget subclass.
*/
public function register( $widget_class ) {
$this->widgets[$widget_class] = new $widget_class();
}
/**
* Un-register a widget subclass.
* Un-registers a widget subclass.
*
* @since 2.8.0
* @access public
*
* @param string $widget_class The name of a {@see WP_Widget} subclass.
* @param string $widget_class The name of a WP_Widget subclass.
*/
public function unregister( $widget_class ) {
unset( $this->widgets[ $widget_class ] );
}
/**
* Utility method for adding widgets to the registered widgets global.
* Serves as a utility method for adding widgets to the registered widgets global.
*
* @since 2.8.0
* @access public