diff --git a/core/src/nodes/node.rs b/core/src/nodes/node.rs index 6d418c26..181c58ef 100644 --- a/core/src/nodes/node.rs +++ b/core/src/nodes/node.rs @@ -25,7 +25,7 @@ use std::fmt; use std::io::Error as IoError; use std::sync::Arc; -// Implementor notes +// Implementation notes // ================= // // In order to minimize the risk of bugs in higher-level code, we want to avoid as much as diff --git a/muxers/mplex/src/lib.rs b/muxers/mplex/src/lib.rs index 14b24451..12ff37bc 100644 --- a/muxers/mplex/src/lib.rs +++ b/muxers/mplex/src/lib.rs @@ -164,7 +164,7 @@ pub struct Multiplex { // Struct shared throughout the implementation. struct MultiplexInner { - // Errored that happend earlier. Should poison any attempt to use this `MultiplexError`. + // Error that happened earlier. Should poison any attempt to use this `MultiplexError`. error: Result<(), IoError>, // Underlying stream. inner: executor::Spawn>>, diff --git a/transports/tcp/src/lib.rs b/transports/tcp/src/lib.rs index e0b7ab42..2d38a912 100644 --- a/transports/tcp/src/lib.rs +++ b/transports/tcp/src/lib.rs @@ -310,7 +310,7 @@ impl Stream for TcpListenStream { .expect("generating a multiaddr from a socket addr never fails"), Err(err) => { // If we can't get the address of the newly-opened socket, there's - // nothing we can except ignore this connection attempt. + // nothing we can do except ignore this connection attempt. error!("Ignored incoming because could't determine its \ address: {:?}", err); continue