From a85283a84f2cd7344c1e6835fd048a93678f54c9 Mon Sep 17 00:00:00 2001 From: Nikita Sivukhin Date: Tue, 22 Jul 2025 21:42:06 +0400 Subject: [PATCH] add trailing comma --- core/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/error.rs b/core/error.rs index 7dd4ccdf9..0e5ac486b 100644 --- a/core/error.rs +++ b/core/error.rs @@ -60,7 +60,7 @@ pub enum LimboError { #[error("Database is busy")] Busy, #[error("Conflict: {0}")] - Conflict(String) + Conflict(String), } #[macro_export]