Skip to content

Commit

Permalink
fix: small typo on incomplete_gamma error
Browse files Browse the repository at this point in the history
  • Loading branch information
skyl4b committed Mar 16, 2024
1 parent 17f32fc commit 72d0500
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 72d0500

Please sign in to comment.