summaryrefslogtreecommitdiff
path: root/pod/perlunicode.pod
diff options
context:
space:
mode:
authorE. Choroba <choroba@cpan.org>2016-09-16 01:33:53 -0700
committerAbigail <abigail@abigail.be>2016-09-16 13:33:49 +0200
commitf434f3571e41ee9c418f07c8510af58cf4083f70 (patch)
tree643d8c63fb43327dfef5f0ac92c67d646e889274 /pod/perlunicode.pod
parent73e1bd1a5c02345bc685f62eb3210f5a55378752 (diff)
downloadperl-f434f3571e41ee9c418f07c8510af58cf4083f70.tar.gz
Nested single quotes in documentation example
Documentation of the Unicode Bug contains an example that nests single quotes in a shell. Most shells can't do that. Patch attached. Signed-off-by: Abigail <abigail@abigail.be>
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 8346b2390f..44c2a986ee 100644
--- a/pod/perlunicode.pod
+++ b/pod/perlunicode.pod
@@ -1746,7 +1746,7 @@ it, which changes the rules from ASCII to Unicode. As an
example, consider the following program and its output:
$ perl -le'
- no feature 'unicode_strings';
+ no feature "unicode_strings";
$s1 = "\xC2";
$s2 = "\x{2660}";
for ($s1, $s2, $s1.$s2) {