From 5c6cefa71e2fb56fff8f24770942f62935ad4f4a Mon Sep 17 00:00:00 2001 From: Jay shah <166749819+Jay-1409@users.noreply.github.com> Date: Tue, 17 Feb 2026 10:41:07 +0530 Subject: [PATCH] Fix typo in comment about service shutdown --- node/node_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/node_test.go b/node/node_test.go index 1552728d04..e34d5616c7 100644 --- a/node/node_test.go +++ b/node/node_test.go @@ -341,7 +341,7 @@ func TestLifecycleTerminationGuarantee(t *testing.T) { stack.RegisterLifecycle(lifecycle) } - // Register a service that fails to shot down cleanly + // Register a service that fails to shut down cleanly failure := errors.New("fail") failer := &InstrumentedService{stop: failure} stack.RegisterLifecycle(failer)