Docs: Typo corrections in various API docblocks.

Props hasanuzzamanshamim.
Fixes #55073.
See #54729.


git-svn-id: https://develop.svn.wordpress.org/trunk@52680 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jb Audras 2022-02-04 16:26:12 +00:00
parent 8e781952c7
commit edcfb250d3
3 changed files with 3 additions and 3 deletions

View File

@ -416,7 +416,7 @@ class WP_Http_Streams {
*
* @param resource $stream The PHP Stream which the SSL request is being made over
* @param string $host The hostname being requested
* @return bool If the cerficiate presented in $stream is valid for $host
* @return bool If the certificate presented in $stream is valid for $host
*/
public static function verify_ssl_certificate( $stream, $host ) {
$context_options = stream_context_get_options( $stream );

View File

@ -8,7 +8,7 @@
*/
/**
* Core class used to implement SimpliePie feed sanitization.
* Core class used to implement SimplePie feed sanitization.
*
* Extends the SimplePie_Sanitize class to use KSES, because
* we cannot universally count on DOMDocument being available.

View File

@ -255,7 +255,7 @@ class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
* - match is numeric: an index in other column.
* - match is 'X': no match. It is a new row.
* *_rows are column vectors for the orig column and the final column.
* - row >= 0: an indix of the $orig or $final array.
* - row >= 0: an index of the $orig or $final array.
* - row < 0: a blank row for that column.
*/
list($orig_matches, $final_matches, $orig_rows, $final_rows) = $this->interleave_changed_lines( $orig, $final );