Fix spelling

This commit is contained in:
Jonathan Tran
2025-03-07 18:11:48 -05:00
parent 219bc4c8a3
commit 0372f35ce1

View File

@ -14,7 +14,7 @@ use crate::{
lazy_static::lazy_static! {
/// A static mutable lock for updating the last successful execution state for the cache.
static ref OLD_AST: Arc<RwLock<Option<OldAstState>>> = Default::default();
// The last successful run's memory. Not cleared after an unssuccessful run.
// The last successful run's memory. Not cleared after an unsuccessful run.
static ref PREV_MEMORY: Arc<RwLock<Option<Stack>>> = Default::default();
}