From 39f0055d2b1e9eccd2f7f10f61687d0717c604f7 Mon Sep 17 00:00:00 2001 From: BluJ Date: Thu, 27 Apr 2023 12:34:10 -0600 Subject: [PATCH] chore: Better error message for type --- lib/mainFn/Daemons.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mainFn/Daemons.ts b/lib/mainFn/Daemons.ts index ddce377..f6b87f8 100644 --- a/lib/mainFn/Daemons.ts +++ b/lib/mainFn/Daemons.ts @@ -16,7 +16,7 @@ type Daemon = { requires: Exclude[] } -type ErrorDuplicateId = `The id "${Id}" is already used` +type ErrorDuplicateId = `The id '${Id}' is already used` /** * Used during the main of a function, it allows us to describe and ensure a set of daemons are running. * With the dependency, we are using this like an init system, where we can ensure that a daemon is running