This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
PERL_DESTRUCT_LEVEL no longer requires a -DDEBUGGING build
[perl5.git] / pod / perlreref.pod
index aaac153..b0c3f6b 100644 (file)
@@ -135,7 +135,7 @@ and L<perlunicode> for details.
    \W      A non-word character
    \s      A whitespace character
    \S      A non-whitespace character
-   \h      An horizontal whitespace
+   \h      A horizontal whitespace
    \H      A non horizontal whitespace
    \N      A non newline (when not followed by '{NAME}';;
            not valid in a character class; equivalent to [^\n]; it's
@@ -256,7 +256,7 @@ There is no quantifier C<{,n}>. That's interpreted as a literal string.
    (?&name)          Recurse into a named subpattern
    (?P>name)         Recurse into a named subpattern (python syntax)
    (?(cond)yes|no)
-   (?(cond)yes)      Conditional expression, where "cond" can be:
+   (?(cond)yes)      Conditional expression, where "(cond)" can be:
                      (?=pat)   lookahead
                      (?!pat)   negative lookahead
                      (?<=pat)  lookbehind