perluniintro nit
Audrey Tang [Fri, 7 Feb 2003 00:02:49 +0000 (08:02 +0800)]
Message-ID: <20030206160249.GA12984@not.autrijus.org>

p4raw-id: //depot/perl@18670

pod/perluniintro.pod

index 7094464..4e52a58 100644 (file)
@@ -363,7 +363,7 @@ the C<open> pragma.  See L<open>, or look at the following example.
 
 With the C<open> pragma you can use the C<:locale> layer
 
-    $ENV{LC_ALL} = $ENV{LANG} = 'ru_RU.KOI8-R';
+    BEGIN { $ENV{LC_ALL} = $ENV{LANG} = 'ru_RU.KOI8-R' }
     # the :locale will probe the locale environment variables like LC_ALL
     use open OUT => ':locale'; # russki parusski
     open(O, ">koi8");