Skip to content

Commit f444b83

Browse files
committed
Added missing semicolon to line 36 of S03-operators/binding-attributes.t
1 parent f4ad278 commit f444b83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

S03-operators/binding-attributes.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ plan 12;
3333
}
3434

3535
my $obj2 = Klass2.new;
36-
$obj2.bind()
36+
$obj2.bind();
3737

3838
#?pugs 3 todo 'bug'
3939
is $obj2.get_x, 42, 'binding $x instance attribute (1)';

0 commit comments

Comments
 (0)