Make WordPress Core

Changeset 24229


Ignore:
Timestamp:
05/10/2013 01:39:30 AM (12 years ago)
Author:
SergeyBiryukov
Message:

Fix typos in phpdoc. props TheLastCicada. fixes #24302.

Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/widgets.php

    r22406 r24229  
    5959/**
    6060 * Show the widgets and their settings for a sidebar.
    61  * Used in the the admin widget config screen.
     61 * Used in the admin widget config screen.
    6262 *
    6363 * @since 2.5.0
  • trunk/wp-admin/js/revisions.js

    r24205 r24229  
    622622        },
    623623
    624         // go the the previous revision
     624        // go to the previous revision
    625625        previousRevision: function() {
    626626            if ( Diff.rightDiff > 1 ) // unless at left boundry
  • trunk/wp-includes/class-wp-theme.php

    r23529 r24229  
    8888     * The directory name of the theme's files, inside the theme root.
    8989     *
    90      * In the case of a child theme, this is directory name of the the child theme.
     90     * In the case of a child theme, this is directory name of the child theme.
    9191     * Otherwise, 'stylesheet' is the same as 'template'.
    9292     *
     
    721721     * The directory name of the theme's "stylesheet" files, inside the theme root.
    722722     *
    723      * In the case of a child theme, this is directory name of the the child theme.
     723     * In the case of a child theme, this is directory name of the child theme.
    724724     * Otherwise, get_stylesheet() is the same as get_template().
    725725     *
  • trunk/wp-includes/feed.php

    r24054 r24229  
    392392                $enclosure = explode("\n", $enc);
    393393
    394                 //only get the the first element eg, audio/mpeg from 'audio/mpeg mpga mp2 mp3'
     394                // only get the first element, e.g. audio/mpeg from 'audio/mpeg mpga mp2 mp3'
    395395                $t = preg_split('/[ \t]/', trim($enclosure[2]) );
    396396                $type = $t[0];
  • trunk/wp-includes/formatting.php

    r24214 r24229  
    19141914 * @since 1.2.0
    19151915 *
    1916  * @uses get_option() to retrieve the the value of 'gmt_offset'.
     1916 * @uses get_option() to retrieve the value of 'gmt_offset'.
    19171917 * @param string $string The date to be converted.
    19181918 * @param string $format The format string for the returned date (default is Y-m-d H:i:s)
  • trunk/wp-includes/functions.php

    r24208 r24229  
    27442744 * same.
    27452745 *
    2746  * This function was backported to the the WordPress 2.3.2, but originally was
    2747  * added in WordPress 2.5.0.
     2746 * This function was backported to WordPress 2.3.2, but originally was added
     2747 * in WordPress 2.5.0.
    27482748 *
    27492749 * @since 2.3.2
  • trunk/wp-includes/post.php

    r24207 r24229  
    10751075 *       inherited from public, each does not rely on this relationship and controls a very specific intention.
    10761076 * - exclude_from_search - Whether to exclude posts with this post type from front end search results.
    1077  *     * If not set, the the opposite of public's current value is used.
     1077 *     * If not set, the opposite of public's current value is used.
    10781078 * - publicly_queryable - Whether queries can be performed on the front end for the post type as part of parse_request().
    10791079 *     * ?post_type={post_type_key}
Note: See TracChangeset for help on using the changeset viewer.