From 07eb6a9cc1cb50b83010756c79b7c3d82f873417 Mon Sep 17 00:00:00 2001 From: s0me0ne-unkn0wn <48632512+s0me0ne-unkn0wn@users.noreply.github.com> Date: Sun, 29 Oct 2023 09:27:08 +0100 Subject: [PATCH] Fix typo Co-authored-by: Koute --- polkadot/node/tracking-allocator/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/node/tracking-allocator/src/lib.rs b/polkadot/node/tracking-allocator/src/lib.rs index 7b6335edda0d..d2bdb13dc6e8 100644 --- a/polkadot/node/tracking-allocator/src/lib.rs +++ b/polkadot/node/tracking-allocator/src/lib.rs @@ -83,7 +83,7 @@ impl Deref for SpinlockGuard<'_, T> { fn deref(&self) -> &T { // SAFETY: It is safe to dereference a guard to the `UnsafeCell` underlying data as the - // presence of the guard means the data are already locked. + // presence of the guard means the data is already locked. unsafe { &*self.lock.data.get() } } }