Make WordPress Core


Ignore:
Timestamp:
08/13/2014 03:55:10 AM (11 years ago)
Author:
DrewAPicture
Message:

Fix some documentation typos in various core files.

Props vlajos.
Fixes #29199.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-http.php

    r29230 r29479  
    728728     *
    729729     * @param string $url The URL which was requested.
    730      * @param array $args The Arguements which were used to make the request.
     730     * @param array $args The Arguments which were used to make the request.
    731731     * @param array $response The Response of the HTTP request.
    732732     * @return false|object False if no redirect is present, a WP_HTTP or WP_Error result otherwise.
     
    14311431        $curl_error = curl_errno( $handle );
    14321432
    1433         // If an error occured, or, no response.
     1433        // If an error occurred, or, no response.
    14341434        if ( $curl_error || ( 0 == strlen( $theBody ) && empty( $theHeaders['headers'] ) ) ) {
    14351435            if ( CURLE_WRITE_ERROR /* 23 */ == $curl_error &&  $r['stream'] ) {
Note: See TracChangeset for help on using the changeset viewer.