From 8dfd011a7f922cac3e9ad7ed3e486b3a778bf9f1 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Fri, 18 Feb 2022 16:22:01 -0500 Subject: [PATCH] americanize canceled --- abci/client/socket_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abci/client/socket_client.go b/abci/client/socket_client.go index 0db21f122..463242bc4 100644 --- a/abci/client/socket_client.go +++ b/abci/client/socket_client.go @@ -390,7 +390,7 @@ func (cli *socketClient) FinalizeBlock( //---------------------------------------- // queueRequest enqueues req onto the queue. The request can break early if the -// the context is cancelled. If the queue is full, this method blocks to allow +// the context is canceled. If the queue is full, this method blocks to allow // the request to be placed onto the queue. This has the effect of creating an // unbounded queue of goroutines waiting to write to this queue which is a bit // antithetical to the purposes of a queue, however, undoing this behavior has