From 28331b7aae5b9cbd2e21b680765397e7456a27f3 Mon Sep 17 00:00:00 2001 From: costdev Date: Wed, 10 Jan 2024 11:57:15 +0000 Subject: [PATCH] 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 --- wp-admin/includes/class-wp-filesystem-ssh2.php | 2 +- wp-admin/includes/class-wp-users-list-table.php | 2 +- wp-admin/includes/deprecated.php | 4 ++-- wp-includes/formatting.php | 2 +- wp-includes/media.php | 2 +- wp-includes/version.php | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/wp-admin/includes/class-wp-filesystem-ssh2.php b/wp-admin/includes/class-wp-filesystem-ssh2.php index 6979a92c2f..b8daad1ab1 100644 --- a/wp-admin/includes/class-wp-filesystem-ssh2.php +++ b/wp-admin/includes/class-wp-filesystem-ssh2.php @@ -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 diff --git a/wp-admin/includes/class-wp-users-list-table.php b/wp-admin/includes/class-wp-users-list-table.php index ecb8eb4b6d..8dfe3ce1a3 100644 --- a/wp-admin/includes/class-wp-users-list-table.php +++ b/wp-admin/includes/class-wp-users-list-table.php @@ -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 * diff --git a/wp-admin/includes/deprecated.php b/wp-admin/includes/deprecated.php index d588ad4f54..f7805b4cc7 100644 --- a/wp-admin/includes/deprecated.php +++ b/wp-admin/includes/deprecated.php @@ -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. * diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index bc150c8a53..83938306b0 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -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 = ''; diff --git a/wp-includes/media.php b/wp-includes/media.php index 224d8a18ca..9cf301e95c 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -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; diff --git a/wp-includes/version.php b/wp-includes/version.php index e76f1eca85..cccbdff03c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.