From 6ab6f443a72f2cffd424409c1798d59f301a6a4a Mon Sep 17 00:00:00 2001 From: MaxweLL22-22 Date: Fri, 24 Jan 2025 22:32:12 +0100 Subject: [PATCH] typo fix uniquify.go --- ethereum/util/uniquify.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum/util/uniquify.go b/ethereum/util/uniquify.go index b0a5269f..1d81cd5c 100644 --- a/ethereum/util/uniquify.go +++ b/ethereum/util/uniquify.go @@ -8,7 +8,7 @@ import ( // Uniquify is a type of advanced mutex. It allows to create named resource locks. type Uniquify interface { // Call executes only one callable with same id at a time. - // Multilpe asynchronous calls with same id will be executed sequentally. + // Multiple asynchronous calls with same id will be executed sequentally. Call(id string, callable func() error) error }