diff options
author | Marcel Grunauer <marcel@codewerk.com> | 2000-08-29 03:19:59 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-28 23:33:39 +0000 |
commit | a31a806a8f483dfa4e00e0ac91d9875a8d724cff (patch) | |
tree | 43a8fa1b770bda3450ea8206c1fba741b17fea18 /pod/perlguts.pod | |
parent | f8f1ea7c161635bf46b2716d915374193f8dd590 (diff) | |
download | perl-a31a806a8f483dfa4e00e0ac91d9875a8d724cff.tar.gz |
spellings
Message-Id: <200008282319.BAA29862@gandalf.local>
p4raw-id: //depot/perl@6872
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 74b901d7fe..bfdf9facad 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -1994,7 +1994,7 @@ whether the current character in a string is valid UTF8. As mentioned above, UTF8 uses a variable number of bytes to store a character. Characters with values 1...128 are stored in one byte, just like good ol' ASCII. Character 129 is stored as C<v194.129>; this -contines up to character 191, which is C<v194.191>. Now we've run out of +continues up to character 191, which is C<v194.191>. Now we've run out of bits (191 is binary C<10111111>) so we move on; 192 is C<v195.128>. And so it goes on, moving to three bytes at character 2048. |