From 4f0bf51b5ce62c2fc035ac59ae7a213e1a00ad95 Mon Sep 17 00:00:00 2001 From: Dimitri Sabadie Date: Sat, 16 Jan 2021 17:03:28 +0100 Subject: [PATCH] Fix README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 39b3eb3..c07f17b 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ assert_eq!(spline.clamped_sample(1.1), Some(10.)); // clamped to the last key [`Spline`] curves are parametered both by the carried value (being interpolated) but also the sampling type. It’s very typical to use `f32` or `f64` but really, you can in theory use any kind of type; that type must, however, implement a contract defined by a set of traits to -implement. See [the documentation of this module](crate::interpolate) for further details. +implement. See [the documentation of this module](https://docs.rs/splines/latest/splines/interpolate/) for further details. # Features and customization