Skip to content

Commit

Permalink
fix:Correct method name.
Browse files Browse the repository at this point in the history
  • Loading branch information
antononcube committed Aug 26, 2024
1 parent eac6281 commit 00e3c1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Statistics/Distributions/Defined.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Binomial is Generic is export {
#= Success probability p

submethod BUILD(Numeric:D :$!n!, Numeric:D :$!p!) {
self.continuos = False;
self.continuous = False;
}
multi method new($n, $p) { self.bless(:$n, :$p) }
multi method generate(UInt:D :$size) {
Expand Down

0 comments on commit 00e3c1c

Please sign in to comment.