From: Matt Corallo <649246+TheBlueMatt@users.noreply.github.com> Date: Thu, 16 Jul 2020 17:00:32 +0000 (-0700) Subject: Merge pull request #656 from erasmospunk/typo X-Git-Tag: v0.0.12~50 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=d6d01bab84b4211bd05a8801d72e9ca28d5915ca;hp=bb369b5c18084323b6e34fa5a2cd72ecb4ada8ea;p=rust-lightning Merge pull request #656 from erasmospunk/typo Fix typo --- diff --git a/lightning-net-tokio/src/lib.rs b/lightning-net-tokio/src/lib.rs index d2494d270..6342300dc 100644 --- a/lightning-net-tokio/src/lib.rs +++ b/lightning-net-tokio/src/lib.rs @@ -90,7 +90,7 @@ struct Connection { event_notify: mpsc::Sender<()>, // Because our PeerManager is templated by user-provided types, and we can't (as far as I can // tell) have a const RawWakerVTable built out of templated functions, we need some indirection - // between being woken up with write-ready and calling PeerManager::write_buffer_spce_avail. + // between being woken up with write-ready and calling PeerManager::write_buffer_space_avail. // This provides that indirection, with a Sender which gets handed to the PeerManager Arc on // the schedule_read stack. //