From e4845e2368460f869fe116280fb57079f36e56fb Mon Sep 17 00:00:00 2001 From: Igor Katson Date: Sat, 7 Dec 2024 11:51:58 +0000 Subject: [PATCH] Add a clarifying comment --- crates/librqbit/src/torrent_state/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/librqbit/src/torrent_state/mod.rs b/crates/librqbit/src/torrent_state/mod.rs index d0454ce..3243e52 100644 --- a/crates/librqbit/src/torrent_state/mod.rs +++ b/crates/librqbit/src/torrent_state/mod.rs @@ -203,7 +203,7 @@ pub struct ManagedTorrentShared { pub struct ManagedTorrent { // Static torrent configuration that doesn't change. pub shared: Arc, - // Torrent metadata. Maybe be None when the magnet is resolving. + // Torrent metadata. Maybe be None when the magnet is resolving (not implemented yet) pub metadata: ArcSwapOption, pub(crate) state_change_notify: Notify, pub(crate) locked: RwLock,