From 2198d3a519df0a80a3176d768eaa1d21ec08c6a4 Mon Sep 17 00:00:00 2001 From: David Estes Date: Thu, 13 Jun 2024 18:29:27 -0600 Subject: [PATCH] chore: remove todo --- store/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/src/error.rs b/store/src/error.rs index afd574126..d7943e191 100644 --- a/store/src/error.rs +++ b/store/src/error.rs @@ -119,7 +119,7 @@ impl From for Error { sqlx::Error::Decode(e) => Self::new_app(anyhow!(e)), sqlx::Error::RowNotFound => Self::new_app(anyhow!("Row not found")), // non_exhaustive - // TODO: is there a way to skip a variant and throw a compilation error if one is ever added? + // is there a way to skip a variant and throw a compilation error if one is ever added? e => Self::new_app(e), } }