X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fln%2Fpeer_handler.rs;fp=src%2Fln%2Fpeer_handler.rs;h=bddc87b99fd7d6b95c9b603a7bd33062d405e0d3;hb=e7d0d8af9f2a5d011c86edb694c315ec69f2ef21;hp=1c8701a2956ffd24e0b97df30e8f105a737c10a4;hpb=265c0836747d560f6b193be261ffbb3cec4d3706;p=rust-lightning diff --git a/src/ln/peer_handler.rs b/src/ln/peer_handler.rs index 1c8701a2..bddc87b9 100644 --- a/src/ln/peer_handler.rs +++ b/src/ln/peer_handler.rs @@ -20,7 +20,7 @@ pub struct MessageHandler { /// Provides an object which can be used to send data to and which uniquely identifies a connection /// to a remote host. You will need to be able to generate multiple of these which meet Eq and /// implement Hash to meet the PeerManager API. -/// For effeciency, Clone should be relatively cheap for this type. +/// For efficiency, Clone should be relatively cheap for this type. /// You probably want to just extend an int and put a file descriptor in a struct and implement /// send_data. pub trait SocketDescriptor : cmp::Eq + hash::Hash + Clone {