summaryrefslogtreecommitdiff
path: root/pod/perlunicode.pod
diff options
context:
space:
mode:
authorbrian d foy <brian.d.foy@gmail.com>2021-03-05 13:48:31 -0500
committerKarl Williamson <khw@cpan.org>2021-03-05 11:28:17 -0800
commitcb1faabf2bbb9a718f9c0a3b7de82d8c25ce26ff (patch)
tree757ddf9b105f01f2a9264605ff0596519458da19 /pod/perlunicode.pod
parent33bc847050ad68bb79f1e04db9100e25017348e1 (diff)
downloadperl-cb1faabf2bbb9a718f9c0a3b7de82d8c25ce26ff.tar.gz
Use IsForeign throughout example
The example used both IsForeign and Is_Foreign, so I chose the one without the underscore
Diffstat (limited to 'pod/perlunicode.pod')
-rw-r--r--pod/perlunicode.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlunicode.pod b/pod/perlunicode.pod
index 2fdb8e1809..810f8ab0ea 100644
--- a/pod/perlunicode.pod
+++ b/pod/perlunicode.pod
@@ -1166,7 +1166,7 @@ C<\p{}> and C<\P{}> constructs; if you are using a user-defined property from a
package other than the one you are in, you must specify its package in the
C<\p{}> or C<\P{}> construct.
- # assuming property Is_Foreign defined in Lang::
+ # assuming property IsForeign defined in Lang::
package main; # property package name required
if ($txt =~ /\p{Lang::IsForeign}+/) { ... }