Docs: Update spelling for inline comments in a few files.

Per the [https://make.wordpress.org/core/handbook/best-practices/spelling/ spelling] and [https://make.wordpress.org/docs/style-guide/language-grammar/word-choice/ word choice] documentation guidelines, American (US) spelling should be preferred.

Props mohadeseghasemi, subrataemfluence, rehanali, SergeyBiryukov.
Fixes #46837.
Built from https://develop.svn.wordpress.org/trunk@52640


git-svn-id: http://core.svn.wordpress.org/trunk@52229 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2022-01-25 13:55:05 +00:00
parent 6329aacac8
commit 2eaeae58ff
11 changed files with 15 additions and 12 deletions

View File

@ -26,7 +26,7 @@
* Restart Apache! * Restart Apache!
* Check phpinfo() streams to confirm that: ssh2.shell, ssh2.exec, ssh2.tunnel, ssh2.scp, ssh2.sftp exist. * Check phpinfo() streams to confirm that: ssh2.shell, ssh2.exec, ssh2.tunnel, ssh2.scp, ssh2.sftp exist.
* *
* Note: As of WordPress 2.8, this utilises the PHP5+ function `stream_get_contents()`. * Note: As of WordPress 2.8, this utilizes the PHP5+ function `stream_get_contents()`.
* *
* @since 2.7.0 * @since 2.7.0
* *

View File

@ -1395,7 +1395,10 @@ function verify_file_signature( $filename, $signatures, $filename_for_errors = f
// Allow for an old version of Sodium_Compat being loaded before the bundled WordPress one. // Allow for an old version of Sodium_Compat being loaded before the bundled WordPress one.
if ( method_exists( 'ParagonIE_Sodium_Compat', 'runtime_speed_test' ) ) { if ( method_exists( 'ParagonIE_Sodium_Compat', 'runtime_speed_test' ) ) {
// Run `ParagonIE_Sodium_Compat::runtime_speed_test()` in optimized integer mode, as that's what WordPress utilises during signing verifications. /*
* Run `ParagonIE_Sodium_Compat::runtime_speed_test()` in optimized integer mode,
* as that's what WordPress utilizes during signing verifications.
*/
// phpcs:disable WordPress.NamingConventions.ValidVariableName // phpcs:disable WordPress.NamingConventions.ValidVariableName
$old_fastMult = ParagonIE_Sodium_Compat::$fastMult; $old_fastMult = ParagonIE_Sodium_Compat::$fastMult;
ParagonIE_Sodium_Compat::$fastMult = true; ParagonIE_Sodium_Compat::$fastMult = true;

View File

@ -983,7 +983,7 @@ function update_core( $from, $to ) {
/* /*
* Import $wp_version, $required_php_version, and $required_mysql_version from the new version. * Import $wp_version, $required_php_version, and $required_mysql_version from the new version.
* DO NOT globalise any variables imported from `version-current.php` in this function. * DO NOT globalize any variables imported from `version-current.php` in this function.
* *
* BC Note: $wp_filesystem->wp_content_dir() returned unslashed pre-2.8. * BC Note: $wp_filesystem->wp_content_dir() returned unslashed pre-2.8.
*/ */

View File

@ -589,7 +589,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
try { try {
$this->image->rotateImage( new ImagickPixel( 'none' ), 360 - $angle ); $this->image->rotateImage( new ImagickPixel( 'none' ), 360 - $angle );
// Normalise EXIF orientation data so that display is consistent across devices. // Normalize EXIF orientation data so that display is consistent across devices.
if ( is_callable( array( $this->image, 'setImageOrientation' ) ) && defined( 'Imagick::ORIENTATION_TOPLEFT' ) ) { if ( is_callable( array( $this->image, 'setImageOrientation' ) ) && defined( 'Imagick::ORIENTATION_TOPLEFT' ) ) {
$this->image->setImageOrientation( Imagick::ORIENTATION_TOPLEFT ); $this->image->setImageOrientation( Imagick::ORIENTATION_TOPLEFT );
} }
@ -627,7 +627,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
$this->image->flopImage(); $this->image->flopImage();
} }
// Normalise EXIF orientation data so that display is consistent across devices. // Normalize EXIF orientation data so that display is consistent across devices.
if ( is_callable( array( $this->image, 'setImageOrientation' ) ) && defined( 'Imagick::ORIENTATION_TOPLEFT' ) ) { if ( is_callable( array( $this->image, 'setImageOrientation' ) ) && defined( 'Imagick::ORIENTATION_TOPLEFT' ) ) {
$this->image->setImageOrientation( Imagick::ORIENTATION_TOPLEFT ); $this->image->setImageOrientation( Imagick::ORIENTATION_TOPLEFT );
} }

View File

@ -1173,7 +1173,7 @@ class WP_Rewrite {
// Not matching a permalink so this is a lot simpler. // Not matching a permalink so this is a lot simpler.
} else { } else {
// Close the match and finalise the query. // Close the match and finalize the query.
$match .= '?$'; $match .= '?$';
$query = $index . '?' . $query; $query = $index . '?' . $query;
} }

View File

@ -4695,7 +4695,7 @@ function wp_make_link_relative( $link ) {
} }
/** /**
* Sanitises various option values based on the nature of the option. * Sanitizes various option values based on the nature of the option.
* *
* This is basically a switch statement which will pass $value through a number * This is basically a switch statement which will pass $value through a number
* of functions depending on the $option. * of functions depending on the $option.

View File

@ -2140,7 +2140,7 @@ function wp_normalize_path( $path ) {
$wrapper .= '://'; $wrapper .= '://';
} }
// Standardise all paths to use '/'. // Standardize all paths to use '/'.
$path = str_replace( '\\', '/', $path ); $path = str_replace( '\\', '/', $path );
// Replace multiple slashes down to a singular, allowing for network shares having two slashes. // Replace multiple slashes down to a singular, allowing for network shares having two slashes.

View File

@ -171,7 +171,7 @@ if ( ! class_exists( 'PO', false ) ) :
} }
} }
// Standardise the line endings on imported content, technically PO files shouldn't contain \r. // Standardize the line endings on imported content, technically PO files shouldn't contain \r.
$unpoified = str_replace( array( "\r\n", "\r" ), "\n", $unpoified ); $unpoified = str_replace( array( "\r\n", "\r" ), "\n", $unpoified );
return $unpoified; return $unpoified;

View File

@ -278,7 +278,7 @@ class WP_REST_Response extends WP_HTTP_Response {
* `http://w.org/{rel}` would transform a `http://w.org/term` relation * `http://w.org/{rel}` would transform a `http://w.org/term` relation
* into `example:term`. * into `example:term`.
* *
* Well-behaved clients should expand and normalise these back to their * Well-behaved clients should expand and normalize these back to their
* full URI relation, however some naive clients may not resolve these * full URI relation, however some naive clients may not resolve these
* correctly, so adding new CURIEs may break backward compatibility. * correctly, so adding new CURIEs may break backward compatibility.
* *

View File

@ -849,7 +849,7 @@ class WP_REST_Server {
*/ */
$endpoints = apply_filters( 'rest_endpoints', $endpoints ); $endpoints = apply_filters( 'rest_endpoints', $endpoints );
// Normalise the endpoints. // Normalize the endpoints.
$defaults = array( $defaults = array(
'methods' => '', 'methods' => '',
'accept_json' => false, 'accept_json' => false,

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.0-alpha-52639'; $wp_version = '6.0-alpha-52640';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.