1
0
mirror of https://github.com/chylex/.NET-Community-Toolkit.git synced 2025-02-23 13:46:00 +01:00

Fix XML docs

This commit is contained in:
Sergio Pedri 2022-03-28 14:04:49 +02:00
parent 760c3c2096
commit 40d06fa8e5

View File

@ -4,7 +4,9 @@
using System.ComponentModel;
using System.Runtime.CompilerServices;
#if NETSTANDARD2_1_OR_GREATER
using System.Runtime.Versioning;
#endif
using System.Threading;
namespace CommunityToolkit.HighPerformance;
@ -48,7 +50,7 @@ public readonly unsafe ref struct UnsafeLock
private readonly SpinLock* spinLock;
/// <summary>
/// A value indicating whether or not the lock is taken by this <see cref="Lock"/> instance.
/// A value indicating whether or not the lock is taken by this <see cref="UnsafeLock"/> instance.
/// </summary>
private readonly bool lockTaken;