Docs: Correct spelling of "subclass" and "overridden" in various docblocks and error messages.

Props garrett-eclipse.
Fixes #48676.
Built from https://develop.svn.wordpress.org/trunk@46739


git-svn-id: http://core.svn.wordpress.org/trunk@46539 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-11-17 07:43:01 +00:00
parent 927aa4b44c
commit 418db0297e
6 changed files with 10 additions and 10 deletions

View File

@ -251,7 +251,7 @@ class WP_List_Table {
* @abstract
*/
public function ajax_user_can() {
die( 'function WP_List_Table::ajax_user_can() must be over-ridden in a sub-class.' );
die( 'function WP_List_Table::ajax_user_can() must be overridden in a subclass.' );
}
/**
@ -263,7 +263,7 @@ class WP_List_Table {
* @abstract
*/
public function prepare_items() {
die( 'function WP_List_Table::prepare_items() must be over-ridden in a sub-class.' );
die( 'function WP_List_Table::prepare_items() must be overridden in a subclass.' );
}
/**
@ -931,7 +931,7 @@ class WP_List_Table {
* @return array
*/
public function get_columns() {
die( 'function WP_List_Table::get_columns() must be over-ridden in a sub-class.' );
die( 'function WP_List_Table::get_columns() must be overridden in a subclass.' );
}
/**

View File

@ -3500,7 +3500,7 @@
control.params = _.extend(
{},
control.defaults,
control.params || {}, // In case sub-class already defines.
control.params || {}, // In case subclass already defines.
options.params || options || {} // The options.params property is deprecated, but it is checked first for back-compat.
);

View File

@ -30,7 +30,7 @@ abstract class WP_Image_Editor {
/**
* Checks to see if current environment supports the editor chosen.
* Must be overridden in a sub-class.
* Must be overridden in a subclass.
*
* @since 3.5.0
*
@ -45,7 +45,7 @@ abstract class WP_Image_Editor {
/**
* Checks to see if editor supports the mime-type specified.
* Must be overridden in a sub-class.
* Must be overridden in a subclass.
*
* @since 3.5.0
*

View File

@ -101,7 +101,7 @@ class WP_Widget {
/**
* Echoes the widget content.
*
* Sub-classes should over-ride this function to generate their widget code.
* Subclasses should override this function to generate their widget code.
*
* @since 2.8.0
*
@ -110,7 +110,7 @@ class WP_Widget {
* @param array $instance The settings for the particular instance of the widget.
*/
public function widget( $args, $instance ) {
die( 'function WP_Widget::widget() must be over-ridden in a sub-class.' );
die( 'function WP_Widget::widget() must be overridden in a subclass.' );
}
/**

View File

@ -113,7 +113,7 @@ if ( ! class_exists( 'Translations', false ) ) :
* Here, in the base Translations class, the common logic for English is implemented:
* 0 if there is one element, 1 otherwise
*
* This function should be overridden by the sub-classes. For example MO/PO can derive the logic
* This function should be overridden by the subclasses. For example MO/PO can derive the logic
* from their headers.
*
* @param integer $count number of items

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.4-alpha-46738';
$wp_version = '5.4-alpha-46739';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.