In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/a845303db8f4bb4f618588d3f8e0f4356427de94?hp=127161e0d0fece1f61b6e7a16bdf935e51849da1>

- Log -----------------------------------------------------------------
commit a845303db8f4bb4f618588d3f8e0f4356427de94
Author: Karl Williamson <[email protected]>
Date:   Sun Mar 29 21:23:54 2015 -0600

    perlrecharclass: Fix typo

M       pod/perlrecharclass.pod

commit bc1d97289b2d0ec6fdf82e6ea23e7ae8fd8e2ff5
Author: Karl Williamson <[email protected]>
Date:   Sun Mar 29 21:23:14 2015 -0600

    perlrebackslash: Nit

M       pod/perlrebackslash.pod
-----------------------------------------------------------------------

Summary of changes:
 pod/perlrebackslash.pod | 2 +-
 pod/perlrecharclass.pod | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pod/perlrebackslash.pod b/pod/perlrebackslash.pod
index b9664aa..55df618 100644
--- a/pod/perlrebackslash.pod
+++ b/pod/perlrebackslash.pod
@@ -67,7 +67,7 @@ as C<Not in [].>
  \a                Alarm or bell.
  \A                Beginning of string.  Not in [].
  \b{}, \b          Boundary. (\b is a backspace in []).
- \B{}, \B          Not a boundary.
+ \B{}, \B          Not a boundary.  Not in [].
  \cX               Control-X.
  \C                Single octet, even under UTF-8.  Not in [].
                    (Deprecated)
diff --git a/pod/perlrecharclass.pod b/pod/perlrecharclass.pod
index 20a439a..ce28771 100644
--- a/pod/perlrecharclass.pod
+++ b/pod/perlrecharclass.pod
@@ -478,7 +478,7 @@ Ranges> will be explained shortly.) Therefore,
  'ss' =~ /\A[\0-\x{ff}]\z/ui       # Doesn't match
  'ss' =~ /\A[\0-\N{LATIN SMALL LETTER SHARP S}]\z/ui   # No match
  'ss' =~ /\A[\xDF-\xDF]\z/ui   # Matches on ASCII platforms, since
-                               # \XDF is LATIN SMALL LETTER SHARP S,
+                               # \xDF is LATIN SMALL LETTER SHARP S,
                                # and the range is just a single
                                # element
 

--
Perl5 Master Repository

Reply via email to