From 45d7cd2d3b0c2e66af8d97ce001bee183d9c893f Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Fri, 24 Oct 2025 19:28:38 -0700 Subject: [PATCH] fix(doc): incorrect comment for startup phase execution --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f857ac5..9a5d5bc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -107,7 +107,7 @@ fn main() -> Result<()> { context.insert(&extracted); let context = context.freeze(); - // Execute the late phase. + // Execute the startup phase. phase(context.clone(), &config.phases.startup).context("unable to execute startup phase")?; let mut entries = Vec::new();