diff options
author | joe <joe@jerkface.net> | 2015-03-29 02:20:38 -0400 |
---|---|---|
committer | joe <joe@jerkface.net> | 2015-03-29 02:20:38 -0400 |
commit | aeaabf8b0a9a3942eb665b62e7ae8f97ada69fdf (patch) | |
tree | 1d9cbefa446f1ffd3ab149ea248b129f92c0f5a5 /src | |
parent | c88a76cb1c6ee7e54628b78a56f1a25415a39c30 (diff) |
documentation fix stopNode -> closeNode
Diffstat (limited to 'src')
-rw-r--r-- | src/Network/BitTorrent/DHT/Session.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Network/BitTorrent/DHT/Session.hs b/src/Network/BitTorrent/DHT/Session.hs index 0c806db2..9aa25866 100644 --- a/src/Network/BitTorrent/DHT/Session.hs +++ b/src/Network/BitTorrent/DHT/Session.hs | |||
@@ -275,7 +275,7 @@ instance MonadActive (DHT ip) where | |||
275 | monadActive = getManager >>= liftIO . isActive | 275 | monadActive = getManager >>= liftIO . isActive |
276 | {-# INLINE monadActive #-} | 276 | {-# INLINE monadActive #-} |
277 | 277 | ||
278 | -- | All allocated resources will be closed at 'stopNode'. | 278 | -- | All allocated resources will be closed at 'closeNode'. |
279 | instance MonadResource (DHT ip) where | 279 | instance MonadResource (DHT ip) where |
280 | liftResourceT m = do | 280 | liftResourceT m = do |
281 | s <- asks resources | 281 | s <- asks resources |
@@ -292,7 +292,7 @@ instance MonadLogger (DHT ip) where | |||
292 | type NodeHandler ip = Handler (DHT ip) | 292 | type NodeHandler ip = Handler (DHT ip) |
293 | 293 | ||
294 | -- | Run DHT session. You /must/ properly close session using | 294 | -- | Run DHT session. You /must/ properly close session using |
295 | -- 'stopNode' function, otherwise socket or other scarce resources may | 295 | -- 'closeNode' function, otherwise socket or other scarce resources may |
296 | -- leak. | 296 | -- leak. |
297 | newNode :: Address ip | 297 | newNode :: Address ip |
298 | => [NodeHandler ip] -- ^ handlers to run on accepted queries; | 298 | => [NodeHandler ip] -- ^ handlers to run on accepted queries; |