From 86396714855fdf96ec39013cf5ac5f3701a2a4d8 Mon Sep 17 00:00:00 2001 From: David Gilligan-Cook Date: Wed, 16 Oct 2024 16:54:48 -0700 Subject: [PATCH] Fixing spelling issue Signed-off-by: David Gilligan-Cook --- crates/spfs/src/tracking/env.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/spfs/src/tracking/env.rs b/crates/spfs/src/tracking/env.rs index 01931fb12..0b6165e4b 100644 --- a/crates/spfs/src/tracking/env.rs +++ b/crates/spfs/src/tracking/env.rs @@ -267,7 +267,7 @@ impl<'de> Deserialize<'de> for EnvSpecItem { EnvSpecItem::from_str(&value).map_err(|err| { // Unfortunately, serde errors call .display() on their - // paramater and store that internally. So we lose the + // parameter and store that internally. So we lose the // original error object here. serde::de::Error::custom(format!("deserializing EnvSpecItem failed: {err}")) })