Raku / doc

🦋 Raku documentation
https://docs.raku.org/
Artistic License 2.0
290 stars 293 forks source link

Fix for issue 4518, bad example #4519

Closed tbrowder closed 2 months ago

tbrowder commented 2 months ago

The problem

Bad example:

isa-ok $resources, Hash;

Solution provided

Correct error by showing the correct class name:

isa-ok $resources, Distribution::Resources;
coke commented 2 months ago

Thanks!