diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-11-25 19:26:17 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-11-25 19:40:43 -0700 |
commit | df9e1087beb66b5a5eb28ff3c2f0756f25256bc4 (patch) | |
tree | 441375eee0ceb468cd3adf869a9bab41dbb68304 | |
parent | f194034a5909067468cef63a1935bb519f3d0c69 (diff) | |
download | perl-df9e1087beb66b5a5eb28ff3c2f0756f25256bc4.tar.gz |
perlunicode: Nits
User-defined \p{}, \P{} are valid on not just Unicode code points; and
use C<> around a code fragment
-rw-r--r-- | pod/perlunicode.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlunicode.pod b/pod/perlunicode.pod index af273e69f7..700650eaab 100644 --- a/pod/perlunicode.pod +++ b/pod/perlunicode.pod @@ -839,12 +839,12 @@ or more newline-separated lines. Each line must be one of the following: =item * -A single hexadecimal number denoting a Unicode code point to include. +A single hexadecimal number denoting a code point to include. =item * Two hexadecimal numbers separated by horizontal whitespace (space or -tabular characters) denoting a range of Unicode code points to include. +tabular characters) denoting a range of code points to include. =item * @@ -1003,7 +1003,7 @@ supports not only minimal list, but all Unicode character properties (see Unicod =item [5] -The experimental feature in v5.18 "(?[...])" accomplishes this. See +The experimental feature in v5.18 C<"(?[...])"> accomplishes this. See L<perlre/(?[ ])>. If you don't want to use an experimental feature, you can use one of the following: |