Fix typos and inconsistencies in PHPdoc / function declarations. See #17414 props duck_

git-svn-id: http://svn.automattic.com/wordpress/trunk@17925 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi
2011-05-14 09:50:20 +00:00
parent c379a72852
commit 65e341d0cb
4 changed files with 11 additions and 11 deletions

View File

@@ -192,7 +192,7 @@ class WP_Http {
}
/**
* Tests which transports are capabable of supporting the request.
* Tests which transports are capable of supporting the request.
*
* @since 3.2.0
* @access private
@@ -247,7 +247,7 @@ class WP_Http {
if ( !$class )
return new WP_Error( 'http_failure', __( 'There are no HTTP transports available which can complete the requested request.' ) );
// Transport claims to support request, Instantate it and give it a whirl.
// Transport claims to support request, instantiate it and give it a whirl.
if ( empty( $transports[$class] ) )
$transports[$class] = new $class;