From cca72b62e9be9d54396c5d5400a9f19dd6102515 Mon Sep 17 00:00:00 2001 From: GarmashAlex Date: Sat, 3 May 2025 22:49:32 +0300 Subject: [PATCH] fix typo --- node/network/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/network/src/lib.rs b/node/network/src/lib.rs index 2ed2f8f..290b0b2 100644 --- a/node/network/src/lib.rs +++ b/node/network/src/lib.rs @@ -94,7 +94,7 @@ pub use peer_manager::{ pub use service::{load_private_key, Context, Libp2pEvent, Service, NETWORK_KEY_FILENAME}; /// Defines the current P2P protocol version. -/// - v1: Broadcast FindFile & AnnounceFile messages in the whole network, which caused network too heavey. +/// - v1: Broadcast FindFile & AnnounceFile messages in the whole network, which caused network too heavy. /// - v2: Publish NewFile to neighbors only and announce file via RPC message. /// - v3: Add shard config in Status message. /// - v4: Refactor pubsub messages.