From efe3208f82666cf01c78646d02296941a616a55f Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Sun, 5 Jan 2025 21:19:42 +0000 Subject: [PATCH] perldelta - Remove backticks (Spotted by mauke) --- pod/perldelta.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 22abc2a05175..33759953d20e 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -75,12 +75,12 @@ fixing [L]. =item * -Fixed an issue where `utf8n_to_uvchr` failed to correctly identify certain +Fixed an issue where C failed to correctly identify certain invalid UTF-8 sequences as invalid. Specifically, sequences that start with continuation bytes or unassigned bytes could cause unexpected behaviour or a panic. This fix ensures that such invalid sequences are now properly detected and handled. This correction also resolves related issues in modules that -handle UTF-8 processing, such as `Encode.pm`. +handle UTF-8 processing, such as L. =item *