From d7e7077c2b2e739c9c94f0ea8d504a006a9ab3bc Mon Sep 17 00:00:00 2001 From: Fran Bull Date: Wed, 12 Mar 2025 07:07:39 -0700 Subject: [PATCH] typo in comment --- tsconsensus/tsconsensus.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconsensus/tsconsensus.go b/tsconsensus/tsconsensus.go index e9e4cc68c..dbb826e29 100644 --- a/tsconsensus/tsconsensus.go +++ b/tsconsensus/tsconsensus.go @@ -4,7 +4,7 @@ // Package tsconsensus implements a consensus algorithm for a group of tsnet.Servers // // The Raft consensus algorithm relies on you implementing a state machine that will give the same -// result to a give command as long as the same logs have been applied in the same order. +// result to a given command as long as the same logs have been applied in the same order. // // tsconsensus uses the hashicorp/raft library to implement leader elections and log application. //