Skip to content

Commit 239bee5

Browse files
committed
Fix compilation error in Foo.Bar::baz exmample.
1 parent b28737d commit 239bee5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Language/operators.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ class or role, even after it has been redefined in the child class.
303303
class Bar {
304304
method baz { 42 }
305305
}
306-
class Foo does Bar {
306+
class Foo is Bar {
307307
method baz { "nope" }
308308
}
309309
say Foo.Bar::baz; # 42

0 commit comments

Comments
 (0)