summaryrefslogtreecommitdiff
path: root/pod/perlunitut.pod
diff options
context:
space:
mode:
authorKarl Williamson <khw@khw-desktop.(none)>2010-04-24 10:23:08 -0600
committerRafael Garcia-Suarez <rgs@consttype.org>2010-04-26 09:39:49 +0200
commit80008eb3e450496f17610b8bfc820f627a758a13 (patch)
treebce5b1c29e0db020bfb1e70b2849cf11d7bb38a6 /pod/perlunitut.pod
parentb1f58cbddd46d8c248a33d0e4867a4170fc55a30 (diff)
downloadperl-80008eb3e450496f17610b8bfc820f627a758a13.tar.gz
Remove false statement about Unicode strings
It is simply not true that all text strings are Unicode strings in Perl.
Diffstat (limited to 'pod/perlunitut.pod')
-rw-r--r--pod/perlunitut.pod3
1 files changed, 0 insertions, 3 deletions
diff --git a/pod/perlunitut.pod b/pod/perlunitut.pod
index 9c4f3074d0..fc352d5aad 100644
--- a/pod/perlunitut.pod
+++ b/pod/perlunitut.pod
@@ -66,9 +66,6 @@ B<Text strings>, or B<character strings> are made of characters. Bytes are
irrelevant here, and so are encodings. Each character is just that: the
character.
-Text strings are also called B<Unicode strings>, because in Perl, every text
-string is a Unicode string.
-
On a text string, you would do things like:
$text =~ s/foo/bar/;