From 68cb20049416950bd9a300fa0d3bf4df109c2de1 Mon Sep 17 00:00:00 2001 From: Jesse Brault Date: Mon, 2 Mar 2026 20:01:29 -0600 Subject: [PATCH] One small todo. --- dm-std-lib/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dm-std-lib/src/lib.rs b/dm-std-lib/src/lib.rs index f7e2fc2..f5aa64f 100644 --- a/dm-std-lib/src/lib.rs +++ b/dm-std-lib/src/lib.rs @@ -23,7 +23,7 @@ impl StdCoreError { impl Debug for StdCoreError { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { - todo!() + write!(f, "{}", self.message) } }