Skip to content

Commit

Permalink
Merge pull request #14 from skyl4b/patch-1
Browse files Browse the repository at this point in the history
fix: small typo on incomplete_gamma error
  • Loading branch information
NicklasXYZ authored Mar 16, 2024
2 parents 17f32fc + 72d0500 commit 373bdd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gleam_community/maths/special.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ pub fn incomplete_gamma(a: Float, x: Float) -> Result(Float, String) {
}

False ->
"Invlaid input argument: a <= 0 or x < 0. Valid input is a > 0 and x >= 0."
"Invalid input argument: a <= 0 or x < 0. Valid input is a > 0 and x >= 0."
|> Error
}
}
Expand Down

0 comments on commit 373bdd1

Please sign in to comment.