Make WordPress Core


Ignore:
Timestamp:
09/03/2011 04:02:41 PM (14 years ago)
Author:
duck_
Message:

Fix typos in documentation (wp-includes/[a-h]). See #18560.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/class-wp-xmlrpc-server.php

    r18584 r18633  
    99 * WordPress XMLRPC server implementation.
    1010 *
    11  * Implements compatability for Blogger API, MetaWeblog API, MovableType, and
     11 * Implements compatibility for Blogger API, MetaWeblog API, MovableType, and
    1212 * pingback. Additional WordPress API for managing comments, pages, posts,
    1313 * options, etc.
     
    748748        ");
    749749
    750         // The date needs to be formated properly.
     750        // The date needs to be formatted properly.
    751751        $num_pages = count($page_list);
    752752        for ( $i = 0; $i < $num_pages; $i++ ) {
     
    15521552     *  - password
    15531553     *  - attachment_id
    1554      * @return array. Assocciative array containing:
     1554     * @return array. Associative array containing:
    15551555     *  - 'date_created_gmt'
    15561556     *  - 'parent'
     
    16621662
    16631663    /**
    1664       * Retrives a list of post formats used by the site
     1664      * Retrieves a list of post formats used by the site
    16651665      *
    16661666      * @since 3.1
     
    34463446            // an #anchor is there, it's either...
    34473447            if ( intval($urltest['fragment']) ) {
    3448                 // ...an integer #XXXX (simpliest case)
     3448                // ...an integer #XXXX (simplest case)
    34493449                $post_ID = (int) $urltest['fragment'];
    34503450                $way = 'from the fragment (numeric)';
Note: See TracChangeset for help on using the changeset viewer.