From 376bdb16c78338fcd80e6c7222263eda5cdc4835 Mon Sep 17 00:00:00 2001 From: Peter Ammon Date: Sat, 15 Jun 2024 16:20:15 -0700 Subject: [PATCH] Fix a misspeeled comment --- src/env/environment_impl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/env/environment_impl.rs b/src/env/environment_impl.rs index d88ae60ee..58e61bdb9 100644 --- a/src/env/environment_impl.rs +++ b/src/env/environment_impl.rs @@ -1093,7 +1093,7 @@ impl EnvStackImpl { } // This is a big dorky lock we take around everything. Everything exported from this module should be -// wrapped in an EnvMutexGurad using this lock. +// wrapped in an EnvMutexGuard using this lock. // Fine grained locking is annoying here because nodes may be shared between stacks, so each // node would need its own lock, and each stack would need to take all the locks before any operation. static ENV_LOCK: Mutex<()> = Mutex::new(());