summaryrefslogtreecommitdiff
path: root/pod/perlunicode.pod
diff options
context:
space:
mode:
authorAndreas König <a.koenig@mind.de>2002-04-20 13:20:25 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2002-04-20 14:31:31 +0000
commitd5822f2596ebe2ba0ef78092c1edce582de97c51 (patch)
tree7406674164ed84b6f23c3a0f990ef0d37a3dbba5 /pod/perlunicode.pod
parentd265266cff0ae4e9d96de6bf4d6e57b0f1fadac9 (diff)
downloadperl-d5822f2596ebe2ba0ef78092c1edce582de97c51.tar.gz
perlunicode.pod typos
Message-ID: <m3vgamoheu.fsf@anima.de> p4raw-id: //depot/perl@16021
Diffstat (limited to 'pod/perlunicode.pod')
-rw-r--r--pod/perlunicode.pod13
1 files changed, 6 insertions, 7 deletions
diff --git a/pod/perlunicode.pod b/pod/perlunicode.pod
index 46080430a7..f635013583 100644
--- a/pod/perlunicode.pod
+++ b/pod/perlunicode.pod
@@ -654,15 +654,14 @@ For example, to define a property that covers both the Japanese
syllabaries (hiragana and katakana), you can define
sub InKana {
- return <<'END';
- 3040 309F
- 30A0 30FF
+ return <<END;
+ 3040\t309F
+ 30A0\t30FF
END
}
-Imagine that the here-doc end marker is at the beginning of the line,
-and that the hexadecimal numbers are separated by a tabulator.
-Now you can use C<\p{InKana}> and C<\P{IsKana}>.
+Imagine that the here-doc end marker is at the beginning of the line.
+Now you can use C<\p{InKana}> and C<\P{InKana}>.
You could also have used the existing block property names:
@@ -674,7 +673,7 @@ You could also have used the existing block property names:
}
Suppose you wanted to match only the allocated characters,
-not the by raw block ranges: in other words, you want to remove
+not the raw block ranges: in other words, you want to remove
the non-characters:
sub InKana {