JuliaMath / Interpolations.jl

Fast, continuous interpolation of discrete datasets in Julia
http://juliamath.github.io/Interpolations.jl/
Other
518 stars 110 forks source link

fix syntax typo #585

Closed kirklong closed 6 months ago

kirklong commented 6 months ago

in current version of docs in the example it suggests the syntax for a linear interpolation is linear_interpolation when in fact the module exports this as LinearInterpolation

codecov[bot] commented 6 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Comparison is base (c66a77e) 87.75% compared to head (e1f3f70) 87.59%. Report is 4 commits behind head on master.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #585 +/- ## ========================================== - Coverage 87.75% 87.59% -0.16% ========================================== Files 28 28 Lines 1886 1887 +1 ========================================== - Hits 1655 1653 -2 - Misses 231 234 +3 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

mkitti commented 6 months ago

Recent versions of this package do export linear_interpolation. LinearInterpolation is deprecated.

https://github.com/JuliaMath/Interpolations.jl/blob/master/src%2FInterpolations.jl#L27

https://github.com/JuliaMath/Interpolations.jl/blob/master/src%2Fdeprecations.jl#L67