Docs: Correct some typos in docblocks and inline comments.
This corrects several typos in documentation, including: - "imput" -> "input" - "proessing" -> "processing" - "instantating" -> "instantiating" - "filtersing" -> "filtering" - "officaly" -> "officially" Follow-up to [8852], [25307], [26191], [37488], [54416]. Props benniledl, mukesh27, jayadevankbh, Presskopp. Fixes #60069. See #59651. Built from https://develop.svn.wordpress.org/trunk@57263 git-svn-id: http://core.svn.wordpress.org/trunk@56769 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cee1cd2789
commit
28331b7aae
|
@ -6,7 +6,7 @@
|
|||
*
|
||||
* {@link http://kevin.vanzonneveld.net/techblog/article/make_ssh_connections_with_php/ - Installation Notes}
|
||||
*
|
||||
* Compile libssh2 (Note: Only 0.14 is officaly working with PHP 5.2.6+ right now, But many users have found the latest versions work)
|
||||
* Compile libssh2 (Note: Only 0.14 is officially working with PHP 5.2.6+ right now, But many users have found the latest versions work)
|
||||
*
|
||||
* cd /usr/src
|
||||
* wget https://www.libssh2.org/download/libssh2-0.14.tar.gz
|
||||
|
|
|
@ -163,7 +163,7 @@ class WP_Users_List_Table extends WP_List_Table {
|
|||
* with this table.
|
||||
*
|
||||
* Provides a list of roles and user count for that role for easy
|
||||
* Filtersing of the user table.
|
||||
* filtering of the user table.
|
||||
*
|
||||
* @since 3.1.0
|
||||
*
|
||||
|
|
|
@ -1152,7 +1152,7 @@ function wp_nav_menu_locations_meta_box() {
|
|||
/**
|
||||
* This was once used to kick-off the Core Updater.
|
||||
*
|
||||
* Deprecated in favor of instantating a Core_Upgrader instance directly,
|
||||
* Deprecated in favor of instantiating a Core_Upgrader instance directly,
|
||||
* and calling the 'upgrade' method.
|
||||
*
|
||||
* @since 2.7.0
|
||||
|
@ -1174,7 +1174,7 @@ function wp_update_core($current, $feedback = '') {
|
|||
/**
|
||||
* This was once used to kick-off the Plugin Updater.
|
||||
*
|
||||
* Deprecated in favor of instantating a Plugin_Upgrader instance directly,
|
||||
* Deprecated in favor of instantiating a Plugin_Upgrader instance directly,
|
||||
* and calling the 'upgrade' method.
|
||||
* Unused since 2.8.0.
|
||||
*
|
||||
|
|
|
@ -3506,7 +3506,7 @@ function convert_smilies( $text ) {
|
|||
$textarr = preg_split( '/(<.*>)/U', $text, -1, PREG_SPLIT_DELIM_CAPTURE ); // Capture the tags as well as in between.
|
||||
$stop = count( $textarr ); // Loop stuff.
|
||||
|
||||
// Ignore proessing of specific tags.
|
||||
// Ignore processing of specific tags.
|
||||
$tags_to_ignore = 'code|pre|style|script|textarea';
|
||||
$ignore_block_element = '';
|
||||
|
||||
|
|
|
@ -4133,7 +4133,7 @@ function _wp_image_editor_choose( $args = array() ) {
|
|||
! call_user_func( array( $implementation, 'supports_mime_type' ), $args['output_mime_type'] )
|
||||
) {
|
||||
/*
|
||||
* This implementation supports the imput type but not the output type.
|
||||
* This implementation supports the input type but not the output type.
|
||||
* Keep looking to see if we can find an implementation that supports both.
|
||||
*/
|
||||
$supports_input = $implementation;
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.5-alpha-57262';
|
||||
$wp_version = '6.5-alpha-57263';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue