Skip to content

Commit eff1a3d

Browse files
committed
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. git-svn-id: https://develop.svn.wordpress.org/trunk@57263 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 3da3296 commit eff1a3d

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/wp-admin/includes/class-wp-filesystem-ssh2.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* {@link http://kevin.vanzonneveld.net/techblog/article/make_ssh_connections_with_php/ - Installation Notes}
88
*
9-
* 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)
9+
* 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)
1010
*
1111
* cd /usr/src
1212
* wget https://www.libssh2.org/download/libssh2-0.14.tar.gz

src/wp-admin/includes/class-wp-users-list-table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public function no_items() {
163163
* with this table.
164164
*
165165
* Provides a list of roles and user count for that role for easy
166-
* Filtersing of the user table.
166+
* filtering of the user table.
167167
*
168168
* @since 3.1.0
169169
*

src/wp-admin/includes/deprecated.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1152,7 +1152,7 @@ function wp_nav_menu_locations_meta_box() {
11521152
/**
11531153
* This was once used to kick-off the Core Updater.
11541154
*
1155-
* Deprecated in favor of instantating a Core_Upgrader instance directly,
1155+
* Deprecated in favor of instantiating a Core_Upgrader instance directly,
11561156
* and calling the 'upgrade' method.
11571157
*
11581158
* @since 2.7.0
@@ -1174,7 +1174,7 @@ function wp_update_core($current, $feedback = '') {
11741174
/**
11751175
* This was once used to kick-off the Plugin Updater.
11761176
*
1177-
* Deprecated in favor of instantating a Plugin_Upgrader instance directly,
1177+
* Deprecated in favor of instantiating a Plugin_Upgrader instance directly,
11781178
* and calling the 'upgrade' method.
11791179
* Unused since 2.8.0.
11801180
*

src/wp-includes/formatting.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3506,7 +3506,7 @@ function convert_smilies( $text ) {
35063506
$textarr = preg_split( '/(<.*>)/U', $text, -1, PREG_SPLIT_DELIM_CAPTURE ); // Capture the tags as well as in between.
35073507
$stop = count( $textarr ); // Loop stuff.
35083508

3509-
// Ignore proessing of specific tags.
3509+
// Ignore processing of specific tags.
35103510
$tags_to_ignore = 'code|pre|style|script|textarea';
35113511
$ignore_block_element = '';
35123512

src/wp-includes/media.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4133,7 +4133,7 @@ function _wp_image_editor_choose( $args = array() ) {
41334133
! call_user_func( array( $implementation, 'supports_mime_type' ), $args['output_mime_type'] )
41344134
) {
41354135
/*
4136-
* This implementation supports the imput type but not the output type.
4136+
* This implementation supports the input type but not the output type.
41374137
* Keep looking to see if we can find an implementation that supports both.
41384138
*/
41394139
$supports_input = $implementation;

0 commit comments

Comments
 (0)