This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta - module versions
[perl5.git] / pod / perlunitut.pod
index fc352d5..e96a9d2 100644 (file)
@@ -42,8 +42,8 @@ distinction between code point and character is blurred, so the terms often
 are used interchangeably.)
 
 There are many, many code points, but computers work with bytes, and a byte has
-room for only 256 values.  Unicode has many more characters, so you need a
-method to make these accessible.
+room for only 256 values.  Unicode has many more characters than that,
+so you need a method to make these accessible.
 
 Unicode is encoded using several competing encodings, of which UTF-8 is the
 most used. In a Unicode encoding, multiple subsequent bytes can be used to
@@ -56,8 +56,8 @@ the same thing, but they're not. There are more Unicode encodings, but much of
 the world has standardized on UTF-8. 
 
 UTF-8 treats the first 128 codepoints, 0..127, the same as ASCII. They take
-only one byte per character. All other characters are encoded as two or more
-(up to six) bytes using a complex scheme. Fortunately, Perl handles this for
+only one byte per character. All other characters are encoded as two to
+four bytes using a complex scheme. Fortunately, Perl handles this for
 us, so we don't have to worry about this.
 
 =head3 Text strings (character strings)
@@ -179,7 +179,8 @@ data.)
 
 =head1 Q and A (or FAQ)
 
-After reading this document, you ought to read L<perlunifaq> too. 
+After reading this document, you ought to read L<perlunifaq> too, then
+L<perluniintro>.
 
 =head1 ACKNOWLEDGEMENTS