fix: typo (#61)

This commit is contained in:
Yongxin-Hu
2024-03-17 01:04:12 +08:00
committed by GitHub
parent f840dc5382
commit 2015ee1703
3 changed files with 3 additions and 3 deletions

View File

@@ -137,7 +137,7 @@ pub struct MiniLsm {
pub(crate) inner: Arc<LsmStorageInner>,
/// Notifies the L0 flush thread to stop working. (In week 1 day 6)
flush_notifier: crossbeam_channel::Sender<()>,
/// The handle for the compaction thread. (In week 1 day 6)
/// The handle for the flush thread. (In week 1 day 6)
flush_thread: Mutex<Option<std::thread::JoinHandle<()>>>,
/// Notifies the compaction thread to stop working. (In week 2)
compaction_notifier: crossbeam_channel::Sender<()>,