From ac7f6872dbcc221db772d4cbc063eb7ad9abb563 Mon Sep 17 00:00:00 2001 From: Joshua Barretto Date: Fri, 20 Oct 2023 13:12:36 +0100 Subject: [PATCH] Fixed typo --- voxygen/src/scene/tether.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voxygen/src/scene/tether.rs b/voxygen/src/scene/tether.rs index 4b5c4bc227..593e4d55af 100644 --- a/voxygen/src/scene/tether.rs +++ b/voxygen/src/scene/tether.rs @@ -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)>, }