Fix various typos

This commit is contained in:
a-kenji
2024-02-20 11:23:09 +01:00
parent 1e246f850a
commit 8fa6c830fb
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# Mycelium
Mycelium is an IPv6 overlay network writing in Rust. Each node that joins the overlay network will receive an overlay network IP in the 400::/7 range.
Mycelium is an IPv6 overlay network written in Rust. Each node that joins the overlay network will receive an overlay network IP in the 400::/7 range.
## Features
+1 -1
View File
@@ -104,7 +104,7 @@ paths:
$ref: '#/components/schemas/PushMessageBody'
responses:
'200':
description: We received a reply withing the specified timeout
description: We received a reply within the specified timeout
content:
application/json:
schema:
+1 -1
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
# A simple shell script to setup a local network using network namespaces. This relies on the presence of the `ip` tool, part of `iproute2` packge on linux.
# A simple shell script to setup a local network using network namespaces. This relies on the presence of the `ip` tool, part of `iproute2` package on linux.
#
# Note: this script requires root privilege
+1 -1
View File
@@ -156,7 +156,7 @@ impl SharedSecret {
data.buf
}
/// Decrypt a message previously encrytped with an equivalent `SharedSecret`. In other words, a
/// Decrypt a message previously encrypted with an equivalent `SharedSecret`. In other words, a
/// message that was previously created by the [`SharedSecret::encrypt`] method.
///
/// Internally, this messages assumes that a 12 byte nonce is present at the end of the data.
+1 -1
View File
@@ -503,7 +503,7 @@ impl MessageStack {
let src_pubkey = if let Some(pk) = dp.router().get_pubkey(message.src) {
pk
} else {
warn!("No publick key entry for IP we just received a message chunk from");
warn!("No public key entry for IP we just received a message chunk from");
return;
};
// This always is our own key as we are receiving.