diff --git a/README.md b/README.md index eeab866768d..d818c6ba7b4 100644 --- a/README.md +++ b/README.md @@ -102,4 +102,4 @@ Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md). - [Substrate](https://github.com/paritytech/substrate) - Framework for blockchain innovation, used by [Polkadot](https://www.parity.io/technologies/polkadot/). - [Taple](https://github.com/opencanarias/taple-core) - Sustainable DLT for asset and process traceability by [OpenCanarias](https://www.opencanarias.com/en/). -- [Ceylon](https://github.com/ceylonai/ceylon) - A Multi-Agent System (MAS) Development Framwork. +- [Ceylon](https://github.com/ceylonai/ceylon) - A Multi-Agent System (MAS) Development Framework. diff --git a/protocols/autonat/src/v2.rs b/protocols/autonat/src/v2.rs index 994497cb1a0..cdc807ea303 100644 --- a/protocols/autonat/src/v2.rs +++ b/protocols/autonat/src/v2.rs @@ -4,8 +4,8 @@ //! //! The new version fixes the issues of the first version: //! - The server now always dials back over a newly allocated port. This greatly reduces the risk of -//! false positives that often occured in the first version, when the clinet-server connection -//! occured over a hole-punched port. +//! false positives that often occurred in the first version, when the clinet-server connection +//! occurred over a hole-punched port. //! - The server protects against DoS attacks by requiring the client to send more data to the //! server then the dial back puts on the client, thus making the protocol unatractive for an //! attacker. diff --git a/transports/tcp/src/lib.rs b/transports/tcp/src/lib.rs index 386caa78b0f..4c4fa7c6b84 100644 --- a/transports/tcp/src/lib.rs +++ b/transports/tcp/src/lib.rs @@ -173,7 +173,7 @@ impl Config { /// /// The new implementation works on a per-connaction basis, defined by the behaviour. This /// removes the necessaity to configure the transport for port reuse, instead the behaviour - /// requiring this behaviour can decide wether to use port reuse or not. + /// requiring this behaviour can decide whether to use port reuse or not. /// /// The API to configure port reuse is part of [`Transport`] and the option can be found in /// [`libp2p_core::transport::DialOpts`].