From 2f402d68e117519adc8b24d1dbf5e6888a364eeb Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Thu, 5 Sep 2019 09:20:21 -0600 Subject: [PATCH] docs/wording --- libp2p/muxers/mplex/mplex.nim | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libp2p/muxers/mplex/mplex.nim b/libp2p/muxers/mplex/mplex.nim index e16913d54..04a8039ff 100644 --- a/libp2p/muxers/mplex/mplex.nim +++ b/libp2p/muxers/mplex/mplex.nim @@ -7,11 +7,11 @@ ## This file may not be copied, modified, or distributed except according to ## those terms. -## TODO: I have to be carefull to clean up channels correctly, -## both by removing them from the internal tables as well as -## cleaning up when the channel is completelly finished. This -## is complicated because half-closed streams makes closing -## channels non non-deterministic. +## TODO: I have to be carefull to clean channels up correctly, +## both by removing from the internal tables as well as +## releasing resource when the channel is completelly +## finished. This is complicated because half-closed +## streams makes closing channels non-deterministic. ## ## This still needs to be implemented properly - I'm leaving it ## here to not forget that this needs to be fixed ASAP.