diff --git a/wp-includes/class-wp-editor.php b/wp-includes/class-wp-editor.php index 48c8020c2a..911aa0ee24 100644 --- a/wp-includes/class-wp-editor.php +++ b/wp-includes/class-wp-editor.php @@ -1508,8 +1508,8 @@ final class _WP_Editors { * Force uncompressed TinyMCE when a custom theme has been defined. * * The compressed TinyMCE file cannot deal with custom themes, so this makes - * sure that we use the uncompressed TinyMCE file if a theme is defined. - * Even if we are on a production environment. + * sure that WordPress uses the uncompressed TinyMCE file if a theme is defined. + * Even if the website is running on a production environment. * * @since 5.0.0 */ diff --git a/wp-includes/class-wp-http-curl.php b/wp-includes/class-wp-http-curl.php index 9b201af110..31bc6ae7a0 100644 --- a/wp-includes/class-wp-http-curl.php +++ b/wp-includes/class-wp-http-curl.php @@ -328,8 +328,8 @@ class WP_Http_Curl { /** * Grabs the headers of the cURL request. * - * Each header is sent individually to this callback, so we append to the `$header` property - * for temporary storage + * Each header is sent individually to this callback, and is appended to the `$header` property + * for temporary storage. * * @since 3.2.0 * @@ -345,14 +345,14 @@ class WP_Http_Curl { /** * Grabs the body of the cURL request. * - * The contents of the document are passed in chunks, so we append to the `$body` + * The contents of the document are passed in chunks, and are appended to the `$body` * property for temporary storage. Returning a length shorter than the length of * `$data` passed in will cause cURL to abort the request with `CURLE_WRITE_ERROR`. * * @since 3.6.0 * - * @param resource $handle cURL handle. - * @param string $data cURL request body. + * @param resource $handle cURL handle. + * @param string $data cURL request body. * @return int Total bytes of data written. */ private function stream_body( $handle, $data ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 5763aed6bb..c51bcb1ba1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55645'; +$wp_version = '6.3-alpha-55646'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.