Skip to content

Commit b5435fd

Browse files
committed
Ensure an xml comment works for .NET or .NET Framework
1 parent 8b7f7db commit b5435fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libraries/System.Collections.Immutable/src/System/Collections/Frozen/FrozenDictionary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ void ICollection.CopyTo(Array array, int index)
431431
/// <summary>Gets either a reference to a <typeparamref name="TValue"/> in the dictionary or a null reference if the key does not exist in the dictionary.</summary>
432432
/// <param name="key">The key used for lookup.</param>
433433
/// <returns>A reference to a <typeparamref name="TValue"/> in the dictionary or a null reference if the key does not exist in the dictionary.</returns>
434-
/// <remarks>The null reference can be detected by calling <see cref="Unsafe.IsNullRef{T}(ref readonly T)"/>.</remarks>
434+
/// <remarks>The null reference can be detected by calling <see cref="Unsafe.IsNullRef"/>.</remarks>
435435
public ref readonly TValue GetValueRefOrNullRef(TKey key)
436436
{
437437
if (key is null)

0 commit comments

Comments
 (0)