In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/f434f3571e41ee9c418f07c8510af58cf4083f70?hp=73e1bd1a5c02345bc685f62eb3210f5a55378752>

- Log -----------------------------------------------------------------
commit f434f3571e41ee9c418f07c8510af58cf4083f70
Author: E. Choroba <chor...@cpan.org>
Date:   Fri Sep 16 01:33:53 2016 -0700

    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 <abig...@abigail.be>
-----------------------------------------------------------------------

Summary of changes:
 pod/perlunicode.pod | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pod/perlunicode.pod b/pod/perlunicode.pod
index 8346b23..44c2a98 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) {

--
Perl5 Master Repository

Reply via email to