From e3da939e006dfbab1e437a8b6c350379dd2b13d8 Mon Sep 17 00:00:00 2001 From: Rob N Date: Sat, 25 May 2024 11:14:37 -1000 Subject: [PATCH] doc: typos, rename --- protocol/src/lib.rs | 2 +- proxy/README.md | 2 +- proxy/src/bin/{v2.rs => proxy.rs} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename proxy/src/bin/{v2.rs => proxy.rs} (100%) diff --git a/protocol/src/lib.rs b/protocol/src/lib.rs index f7a1d30..7c23035 100644 --- a/protocol/src/lib.rs +++ b/protocol/src/lib.rs @@ -533,7 +533,7 @@ fn initialize_session_key_material( /// Handshake state-machine to establish the secret material in the communication channel. /// -/// A handshake is first initialized to creat local materials needed to setup communication +/// A handshake is first initialized to create local materials needed to setup communication /// channel between an *initiator* and a *responder*. The next step is to call `complete_materials` /// no matter if initiator or responder, however the responder should already have the /// necessary materials from their peers request. `complete_materials` creates the response diff --git a/proxy/README.md b/proxy/README.md index 6d72b90..ac10e84 100644 --- a/proxy/README.md +++ b/proxy/README.md @@ -4,7 +4,7 @@ A proxy process which allows V1-only clients to communicate over a V2 protocol. ## Running the Proxy -`cargo run --bin async` +`cargo run --bin proxy` ## Testing with Nakamoto diff --git a/proxy/src/bin/v2.rs b/proxy/src/bin/proxy.rs similarity index 100% rename from proxy/src/bin/v2.rs rename to proxy/src/bin/proxy.rs