Fix some words that aren't words.
See #28885. Built from https://develop.svn.wordpress.org/trunk@29454 git-svn-id: http://core.svn.wordpress.org/trunk@29232 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
09e61f534b
commit
a8583d5f19
|
@ -72,7 +72,7 @@ class Custom_Background {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties setable for backwards compatibility.
|
||||
* Make private properties settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
@ -99,7 +99,7 @@ class Custom_Background {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties unsetable for backwards compatibility.
|
||||
* Make private properties un-settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
|
|
@ -94,7 +94,7 @@ class Custom_Image_Header {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties setable for backwards compatibility.
|
||||
* Make private properties settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
@ -121,7 +121,7 @@ class Custom_Image_Header {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties unsetable for backwards compatibility.
|
||||
* Make private properties un-settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
|
|
@ -1953,7 +1953,7 @@ function wp_ajax_set_post_thumbnail() {
|
|||
}
|
||||
|
||||
/**
|
||||
* Ajax handler for setting the featured image for an attachment.
|
||||
* AJAX handler for setting the featured image for an attachment.
|
||||
*
|
||||
* @since 4.0.0
|
||||
*
|
||||
|
@ -2613,7 +2613,7 @@ function wp_ajax_query_themes() {
|
|||
}
|
||||
|
||||
/**
|
||||
* Apply [embed] handlers to a string.
|
||||
* Apply [embed] AJAX handlers to a string.
|
||||
*
|
||||
* @since 4.0.0
|
||||
*
|
||||
|
|
|
@ -45,15 +45,15 @@ class WP_Filesystem_Base {
|
|||
* @since 4.0.0
|
||||
* @access public
|
||||
*
|
||||
* @param string $name
|
||||
* @return mixed
|
||||
* @param string $name Property to get.
|
||||
* @return mixed Property.
|
||||
*/
|
||||
public function __get( $name ) {
|
||||
return $this->$name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Make private properties setable for backwards compatibility.
|
||||
* Make private properties settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
@ -80,7 +80,7 @@ class WP_Filesystem_Base {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties unsetable for backwards compatibility.
|
||||
* Make private properties un-settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
|
|
@ -109,12 +109,12 @@ class WP_List_Table {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties setable for backwards compatibility.
|
||||
* Make private properties settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
*
|
||||
* @param string $name Propert to set.
|
||||
* @param string $name Property to set.
|
||||
* @param mixed $value Property value.
|
||||
* @return mixed Newly-set property.
|
||||
*/
|
||||
|
@ -136,7 +136,7 @@ class WP_List_Table {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties unsetable for backwards compatibility.
|
||||
* Make private properties un-settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
|
|
@ -42,6 +42,7 @@ if ( 'publish' == $post->post_status ) {
|
|||
$preview_button = __( 'Preview Changes' );
|
||||
} else {
|
||||
$preview_link = set_url_scheme( get_permalink( $post->ID ) );
|
||||
|
||||
/**
|
||||
* Filter the URI of a post preview in the post submit box.
|
||||
*
|
||||
|
|
|
@ -320,7 +320,7 @@ class WP_Object_Cache {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties setable for backwards compatibility.
|
||||
* Make private properties settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
@ -347,7 +347,7 @@ class WP_Object_Cache {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties unsetable for backwards compatibility.
|
||||
* Make private properties un-settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
|
|
@ -43,7 +43,7 @@ class WP_Ajax_Response {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties setable for backwards compatibility.
|
||||
* Make private properties settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
@ -70,7 +70,7 @@ class WP_Ajax_Response {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties unsetable for backwards compatibility.
|
||||
* Make private properties un-settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
|
|
@ -431,7 +431,7 @@ final class WP_Customize_Manager {
|
|||
|
||||
/**
|
||||
* Prevent sending a 404 status when returning the response for the customize
|
||||
* preview, since it causes the jQuery Ajax to fail. Send 200 instead.
|
||||
* preview, since it causes the jQuery AJAX to fail. Send 200 instead.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
|
|
@ -79,7 +79,7 @@ class WP_Error {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties setable for backwards compatibility.
|
||||
* Make private properties settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
@ -106,7 +106,7 @@ class WP_Error {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties unsetable for backwards compatibility.
|
||||
* Make private properties un-settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
|
|
@ -40,7 +40,9 @@ class Walker {
|
|||
protected $max_pages = 1;
|
||||
|
||||
/**
|
||||
* Wether the current element has children or not. To be used in start_el()
|
||||
* Wether the current element has children or not.
|
||||
*
|
||||
* To be used in start_el().
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access protected
|
||||
|
@ -62,7 +64,7 @@ class Walker {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties setable for backwards compatibility.
|
||||
* Make private properties settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
@ -89,7 +91,7 @@ class Walker {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties unsetable for backwards compatibility.
|
||||
* Make private properties un-settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
|
|
@ -676,7 +676,7 @@ class WP_MatchesMapRegex {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties setable for backwards compatibility.
|
||||
* Make private properties settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
@ -703,7 +703,7 @@ class WP_MatchesMapRegex {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties unsetable for backwards compatibility.
|
||||
* Make private properties un-settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
|
|
@ -3937,7 +3937,7 @@ class WP_Query {
|
|||
* @since 4.0.0
|
||||
* @access public
|
||||
*
|
||||
* @param string $name Property to get
|
||||
* @param string $name Property to get.
|
||||
* @return mixed Property.
|
||||
*/
|
||||
public function __get( $name ) {
|
||||
|
@ -3945,7 +3945,7 @@ class WP_Query {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties setable for backwards compatibility.
|
||||
* Make private properties settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
@ -3958,7 +3958,7 @@ class WP_Query {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties setable for backwards compatibility.
|
||||
* Make private properties settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
|
|
@ -858,7 +858,7 @@ class WP_User_Query {
|
|||
* @since 4.0.0
|
||||
* @access public
|
||||
*
|
||||
* @param string $name Property to get
|
||||
* @param string $name Property to get.
|
||||
* @return mixed Property.
|
||||
*/
|
||||
public function __get( $name ) {
|
||||
|
@ -866,7 +866,7 @@ class WP_User_Query {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties setable for backwards compatibility.
|
||||
* Make private properties settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
@ -893,7 +893,7 @@ class WP_User_Query {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties unsetable for backwards compatibility.
|
||||
* Make private properties un-settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
|
|
@ -444,7 +444,7 @@ class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties setable for backwards compatibility.
|
||||
* Make private properties settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
@ -471,7 +471,7 @@ class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
|
|||
}
|
||||
|
||||
/**
|
||||
* Make private properties unsetable for backwards compatibility.
|
||||
* Make private properties un-settable for backwards compatibility.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @access public
|
||||
|
|
Loading…
Reference in New Issue