Skip to content

Commit 07b4c3f

Browse files
committed
Use non breaking spaces.
As reported by zoffixznet <#1719> it is better to use non-breaking spaces when dealing with Perl 5|6 to ensure the version number does not wrapped onto a new line. Fixed also a missing whitespace between two words.
1 parent 06a0985 commit 07b4c3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/5to6-nutshell.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -899,9 +899,9 @@ The C<for> loop has the following rules:
899899
appearing after the list and an added arrow operator;
900900
=item the iteration variable is now always lexical: C<my> is neither needed nor
901901
allowed;
902-
=item the iteration variable is a I<read-only> alias to the current list element (in Perl 5
902+
=item the iteration variable is a I<read-only> alias to the current list element (in Perl 5
903903
it is a I<read-write> alias!). If a read-write alias is required, change the C«->» before the iteration
904-
variable to a C«<->». When translatingfrom Perl 5, inspect the use of the loop variable to decide if
904+
variable to a C«<->». When translating from Perl 5, inspect the use of the loop variable to decide if
905905
read-write is needed.
906906
907907
=for code :lang<perl5>

0 commit comments

Comments
 (0)