From 3d25ad6ef63d0c07923da80c7468d479f07959a6 Mon Sep 17 00:00:00 2001 From: gammazero Date: Tue, 1 Aug 2023 13:32:09 -0700 Subject: [PATCH] format comment --- core/bootstrap/bootstrap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/bootstrap/bootstrap.go b/core/bootstrap/bootstrap.go index 5cbe954463b..acd7ef67245 100644 --- a/core/bootstrap/bootstrap.go +++ b/core/bootstrap/bootstrap.go @@ -96,7 +96,7 @@ func WithBackupPeers(load func(context.Context) []peer.AddrInfo, save func(conte } } -// BackupPeers returns the load and save backup peers functions. +// BackupPeers returns the load and save backup peers functions. func (cfg *BootstrapConfig) BackupPeers() (func(context.Context) []peer.AddrInfo, func(context.Context, []peer.AddrInfo)) { return cfg.loadBackupBootstrapPeers, cfg.saveBackupBootstrapPeers }