Fix typos in documentation (wp-admin/). See #18560.

git-svn-id: https://develop.svn.wordpress.org/trunk@18632 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jon Cave
2011-09-03 14:18:10 +00:00
parent bcd9d1a36e
commit 60d321b14b
20 changed files with 47 additions and 47 deletions

View File

@@ -35,7 +35,7 @@ function plugins_api($action, $args = null) {
$args->per_page = 24;
// Allows a plugin to override the WordPress.org API entirely.
// Use the filter 'plugins_api_result' to mearly add results.
// Use the filter 'plugins_api_result' to merely add results.
// Please ensure that a object is returned from the following filters.
$args = apply_filters('plugins_api_args', $args, $action);
$res = apply_filters('plugins_api', false, $action, $args);
@@ -97,7 +97,7 @@ function install_dashboard() {
if ( is_wp_error($api_tags) ) {
echo $api_tags->get_error_message();
} else {
//Set up the tags in a way which can be interprated by wp_generate_tag_cloud()
//Set up the tags in a way which can be interpreted by wp_generate_tag_cloud()
$tags = array();
foreach ( (array)$api_tags as $tag )
$tags[ $tag['name'] ] = (object) array(
@@ -175,7 +175,7 @@ add_action('install_plugins_updated', 'display_plugins_table');
* @since 3.0.0
*/
function install_plugin_install_status($api, $loop = false) {
// this function is called recursivly, $loop prevents futhur loops.
// this function is called recursively, $loop prevents further loops.
if ( is_array($api) )
$api = (object) $api;