Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Co-authored-by: Koute <koute@users.noreply.github.com>
  • Loading branch information
s0me0ne-unkn0wn and koute authored Oct 29, 2023
1 parent 54686a1 commit 07eb6a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polkadot/node/tracking-allocator/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl<T: Send> 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() }
}
}
Expand Down

0 comments on commit 07eb6a9

Please sign in to comment.