Skip to content

Commit 9f36dae

Browse files
committed
Eliminates spurious reference to sink ctxt, closes #1223
1 parent 58b7cf1 commit 9f36dae

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

doc/Type/Block.pod6

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,14 @@ The last statement is the implicit return value of the block.
4343
4444
say {1}.(); # OUTPUT: «1␤»
4545
46-
Bare blocks in sink context are automatically executed:
46+
Bare blocks are automatically executed in the order they appear:
4747
48-
say 1;
48+
say 1; # OUTPUT: «1␤»
4949
{
50-
say 2; # executed directly, not a Block object
50+
say 2; # OUTPUT: «2␤»; executed directly, not a Block object
5151
}
52-
say 3;
52+
say 3; # OUTPUT: «3␤»
53+
5354
5455
=end pod
5556

0 commit comments

Comments
 (0)