Skip to content

Commit

Permalink
Merge pull request #84 from yakir12/patch-1
Browse files Browse the repository at this point in the history
tiny typo in error message
  • Loading branch information
kbarbary authored Oct 28, 2021
2 parents 70784de + 39b77ab commit 52c991e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dierckx.jl
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ function _ParametricSpline(u::Union{AbstractVector, Nothing}, x::AbstractMatrix,

length(w) == m || error("number of data points and length of w must match")
0 < idim < 11 || error("number of dimension must be between 1 and 10")
m > k || error("number of data points muct be greater than k")
m > k || error("number of data points must be greater than k")
1 <= k <= 5 || error("1 <= k = $k <= 5 must hold")

local ipar, uin, ub, ue
Expand Down

0 comments on commit 52c991e

Please # to comment.