From 715bfc86646438d945ff6a05984ad9af2984d1a3 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 25 Oct 2020 00:12:40 +0000 Subject: [PATCH] Docs: Correct an example in `wp_kses_normalize_entities()` description. Props ediamin. Fixes #51620. git-svn-id: https://develop.svn.wordpress.org/trunk@49304 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/kses.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/kses.php b/src/wp-includes/kses.php index 1e7739df91..3a11d8a69f 100644 --- a/src/wp-includes/kses.php +++ b/src/wp-includes/kses.php @@ -1777,7 +1777,7 @@ function wp_kses_bad_protocol_once2( $string, $allowed_protocols ) { * Converts and fixes HTML entities. * * This function normalizes HTML entities. It will convert `AT&T` to the correct - * `AT&T`, `:` to `:`, `&#XYZZY;` to `&#XYZZY;` and so on. + * `AT&T`, `:` to `:`, `&#XYZZY;` to `&#XYZZY;` and so on. * * When `$context` is set to 'xml', HTML entities are converted to their code points. For * example, `AT&T…&#XYZZY;` is converted to `AT&T…&#XYZZY;`.