From a91dc03528be4518bc55cf3615b66ceaf825d84d Mon Sep 17 00:00:00 2001 From: finaltrip Date: Tue, 4 Jun 2024 02:46:24 +0900 Subject: [PATCH] chore: fix comment (#448) --- components/cqrs/command_processor_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cqrs/command_processor_test.go b/components/cqrs/command_processor_test.go index a3756daca..4064e78dc 100644 --- a/components/cqrs/command_processor_test.go +++ b/components/cqrs/command_processor_test.go @@ -146,7 +146,7 @@ func TestCommandProcessor_non_pointer_command(t *testing.T) { assert.IsType(t, cqrs.NonPointerError{}, errors.Cause(err)) } -// TestCommandProcessor_multiple_same_command_handlers checks, that we don't register multiple handlers for the same commend. +// TestCommandProcessor_multiple_same_command_handlers checks, that we don't register multiple handlers for the same command. func TestCommandProcessor_multiple_same_command_handlers(t *testing.T) { ts := NewTestServices()