Skip to content

Commit 7b38d71

Browse files
committed
whitespace
1 parent d7f8c61 commit 7b38d71

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/Language/concurrency.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ In this example we are watching two supplies.
328328
329329
my $bread-supplier = Supplier.new;
330330
my $vegetable-supplier = Supplier.new;
331-
331+
332332
my $supply = supply {
333333
whenever $bread-supplier.Supply {
334334
emit("We've got bread: " ~ $_);
@@ -338,7 +338,7 @@ In this example we are watching two supplies.
338338
};
339339
}
340340
$supply.tap( -> $v { say "$v" });
341-
341+
342342
$vegetable-supplier.emit("Radish"); # OUTPUT: «We've got a vegetable: Radish␤»
343343
$bread-supplier.emit("Thick sliced"); # OUTPUT: «We've got bread: Thick sliced␤»
344344
$vegetable-supplier.emit("Lettuce"); # OUTPUT: «We've got a vegetable: Lettuce␤»

doc/Language/syntax.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ rules.
805805
806806
grammar G { }
807807
808-
Several packages may be declared in a single file. However, you can declare a C<unit> package
808+
Several packages may be declared in a single file. However, you can declare a C<unit> package
809809
at the start of the file (preceded only by comments or C<use> statements), and the
810810
rest of the file will be taken as being the body of the package. In this case, the curl brackets are not required.
811811

0 commit comments

Comments
 (0)