From 40cfe710024ef90d8599c6fe2261cdcdabeeb0be Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Wed, 20 Apr 2022 23:17:29 +0900 Subject: [PATCH] eth/downloader: fix typo in downloader.go (#24704) synchornization -> synchronization --- eth/downloader/downloader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/downloader/downloader.go b/eth/downloader/downloader.go index 0e7c48d8b..c836fdd4b 100644 --- a/eth/downloader/downloader.go +++ b/eth/downloader/downloader.go @@ -358,7 +358,7 @@ func (d *Downloader) LegacySync(id string, head common.Hash, td, ttd *big.Int, m // checks fail an error will be returned. This method is synchronous func (d *Downloader) synchronise(id string, hash common.Hash, td, ttd *big.Int, mode SyncMode, beaconMode bool, beaconPing chan struct{}) error { // The beacon header syncer is async. It will start this synchronization and - // will continue doing other tasks. However, if synchornization needs to be + // will continue doing other tasks. However, if synchronization needs to be // cancelled, the syncer needs to know if we reached the startup point (and // inited the cancel cannel) or not yet. Make sure that we'll signal even in // case of a failure.