Docs: Remove "in in", "this this", and "containing containing" dittography from inline comments.
Props Presskopp. Fixes #41841. git-svn-id: https://develop.svn.wordpress.org/trunk@41353 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f5c342ce76
commit
47f5fd023c
|
@ -716,7 +716,7 @@ final class WP_Customize_Nav_Menus {
|
|||
* Return an array of all the available item types.
|
||||
*
|
||||
* @since 4.3.0
|
||||
* @since 4.7.0 Each array item now includes a `$type_label` in in addition to `$title`, `$type`, and `$object`.
|
||||
* @since 4.7.0 Each array item now includes a `$type_label` in addition to `$title`, `$type`, and `$object`.
|
||||
*
|
||||
* @return array The available menu item types.
|
||||
*/
|
||||
|
@ -754,7 +754,7 @@ final class WP_Customize_Nav_Menus {
|
|||
* Filters the available menu item types.
|
||||
*
|
||||
* @since 4.3.0
|
||||
* @since 4.7.0 Each array item now includes a `$type_label` in in addition to `$title`, `$type`, and `$object`.
|
||||
* @since 4.7.0 Each array item now includes a `$type_label` in addition to `$title`, `$type`, and `$object`.
|
||||
*
|
||||
* @param array $item_types Custom menu item types.
|
||||
*/
|
||||
|
|
|
@ -3134,7 +3134,7 @@ function _wp_keep_alive_customize_changeset_dependent_auto_drafts( $new_status,
|
|||
}
|
||||
$wpdb->update(
|
||||
$wpdb->posts,
|
||||
array( 'post_date' => $new_post_date ), // Note wp_delete_auto_drafts() only looks at this this date.
|
||||
array( 'post_date' => $new_post_date ), // Note wp_delete_auto_drafts() only looks at this date.
|
||||
array( 'ID' => $post_id )
|
||||
);
|
||||
clean_post_cache( $post_id );
|
||||
|
|
|
@ -247,7 +247,7 @@ function show_user_form($user_name = '', $user_email = '', $errors = '') {
|
|||
*
|
||||
* @since 3.0.0
|
||||
*
|
||||
* @param WP_Error $errors A WP_Error object containing containing 'user_name' or 'user_email' errors.
|
||||
* @param WP_Error $errors A WP_Error object containing 'user_name' or 'user_email' errors.
|
||||
*/
|
||||
do_action( 'signup_extra_fields', $errors );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue