diff --git a/docs/src/index.md b/docs/src/index.md index 75e523a7..fac1d976 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -63,7 +63,7 @@ composition of `interpolate`, `scale`, and `extrapolate`. You may not need all of the the scaling and extrapolation features. ```julia -interp_linear = extrapolate(scale(interpolate(A, BSpline(Linear())), xs)) +interp_linear = extrapolate(scale(interpolate(A, BSpline(Linear())), xs), Line()) ``` If we know we do not need the extrapolation portion, we can use the following.