From bc4e5dd69598e29fcc3c5eec8a9026093fe3b106 Mon Sep 17 00:00:00 2001 From: Kyle Carow Date: Thu, 23 Jan 2025 14:47:01 -0700 Subject: [PATCH] fix 'sttempted' typo --- src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index b21a228..57803d2 100644 --- a/src/error.rs +++ b/src/error.rs @@ -33,7 +33,7 @@ pub enum ValidationError { #[derive(Error, Debug)] pub enum InterpolationError { - #[error("sttempted to interpolate at point beyond grid data: {0}")] + #[error("attempted to interpolate at point beyond grid data: {0}")] ExtrapolationError(String), #[error("surrounding values cannot be NaN: {0}")] NaNError(String),