Skip to content

Commit 4f55f66

Browse files
committed
Fix formatto
1 parent 34e002e commit 4f55f66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Language/operators.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1179,7 +1179,7 @@ the parser depending on the syntax of the left-hand side.
11791179
Binding. Whereas C<$x = $y> puts the value in C<$y> into C<$x>, C<$x :=
11801180
$y> makes C<$x> and C<$y> the same thing.
11811181
1182-
for code :allow<B L>
1182+
=for code :allow<B L>
11831183
my $a = 42;
11841184
my $b B<=> $a;
11851185
$bL<++>;
@@ -1189,7 +1189,7 @@ This will output 42, because C<$a> and C<$b> both contained the number
11891189
C<42>, but the L<containers|/language/containters.html#Binding> were
11901190
different.
11911191
1192-
for code :allow<B L>
1192+
=for code :allow<B L>
11931193
my $a = 42;
11941194
my $b B<:=> $a;
11951195
$bL<++>;

0 commit comments

Comments
 (0)