Skip to content

Commit

Permalink
perlop: Fix a few nits
Browse files Browse the repository at this point in the history
Hope I didn't break anything.
  • Loading branch information
jidanni authored and khwilliamson committed Jul 31, 2021
1 parent 71ca71b commit 27901ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pod/perlop.pod
Expand Up @@ -1804,7 +1804,7 @@ are quoted by C<\Q>.
C<\L>, C<\U>, C<\F>, and C<\Q> can stack, in which case you need one
C<\E> for each. For example:

say"This \Qquoting \ubusiness \Uhere isn't quite\E done yet,\E is it?";
say "This \Qquoting \ubusiness \Uhere isn't quite\E done yet,\E is it?";
This quoting\ Business\ HERE\ ISN\'T\ QUITE\ done\ yet\, is it?

If a S<C<use locale>> form that includes C<LC_CTYPE> is in effect (see
Expand Down Expand Up @@ -3115,7 +3115,7 @@ are not available for here-docs.

No interpolation is performed at this stage.
Any backslashed sequences including C<\\> are treated at the stage
to L</"parsing regular expressions">.
of L</"Parsing regular expressions">.

=item C<''>, C<q//>, C<tr'''>, C<y'''>, the replacement of C<s'''>

Expand Down Expand Up @@ -3184,7 +3184,7 @@ brackets. because the outcome may be determined by voting based
on heuristic estimators, the result is not strictly predictable.
Fortunately, it's usually correct for ambiguous cases.

=item the replacement of C<s///>
=item The replacement of C<s///>

Processing of C<\Q>, C<\U>, C<\u>, C<\L>, C<\l>, C<\F> and interpolation
happens as with C<qq//> constructs.
Expand Down Expand Up @@ -3254,7 +3254,7 @@ non-whitespace choices.
This step is the last one for all constructs except regular expressions,
which are processed further.

=item parsing regular expressions
=item Parsing regular expressions
X<regexp, parse>

Previous steps were performed during the compilation of Perl code,
Expand Down

0 comments on commit 27901ad

Please sign in to comment.