Typo fix from Julian Gilbey, forwarded upstream from Debian by
Nicholas Clark [Fri, 16 Jul 2004 13:21:33 +0000 (13:21 +0000)]
Brendan O'Dea

p4raw-id: //depot/perl@23129

pod/perluniintro.pod

index 19bc82e..81efd6b 100644 (file)
@@ -668,8 +668,8 @@ How Do I Detect Data That's Not Valid In a Particular Encoding?
 Use the C<Encode> package to try converting it.
 For example,
 
-    use Encode 'encode_utf8';
-    if (encode_utf8($string_of_bytes_that_I_think_is_utf8)) {
+    use Encode 'decode_utf8';
+    if (decode_utf8($string_of_bytes_that_I_think_is_utf8)) {
         # valid
     } else {
         # invalid