Fixed typo

This commit is contained in:
Joshua Barretto 2023-10-20 13:12:36 +01:00
parent 3057d67a1c
commit ac7f6872db

View File

@ -28,7 +28,7 @@ pub struct TetherMgr {
/// Every tick, the 'alive' state of the flag flips between `true` and
/// `false` to avoid the need to wastefully reset the flag of every
/// alive tether on each tick (this is a common optimisation in some garbage
/// collection algoruthms too).
/// collection algorithms too).
stale_flag: bool,
tethers: HashMap<(Uid, Uid), (BoundLocals, bool)>,
}