Skip to content

Commit ddb5824

Browse files
committed
Fix typos in some XML docs
1 parent 934e794 commit ddb5824

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/ComputeSharp.SourceGeneration/Helpers/EquatableArray{T}.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,19 +81,19 @@ public int Length
8181
get => AsImmutableArray().Length;
8282
}
8383

84-
/// <sinheritdoc/>
84+
/// <inheritdoc/>
8585
public bool Equals(EquatableArray<T> array)
8686
{
8787
return AsSpan().SequenceEqual(array.AsSpan());
8888
}
8989

90-
/// <sinheritdoc/>
90+
/// <inheritdoc/>
9191
public override bool Equals(object? obj)
9292
{
9393
return obj is EquatableArray<T> array && Equals(this, array);
9494
}
9595

96-
/// <sinheritdoc/>
96+
/// <inheritdoc/>
9797
public override unsafe int GetHashCode()
9898
{
9999
if (this.array is not T[] array)
@@ -174,13 +174,13 @@ public ImmutableArray<T>.Enumerator GetEnumerator()
174174
return AsImmutableArray().GetEnumerator();
175175
}
176176

177-
/// <sinheritdoc/>
177+
/// <inheritdoc/>
178178
IEnumerator<T> IEnumerable<T>.GetEnumerator()
179179
{
180180
return ((IEnumerable<T>)AsImmutableArray()).GetEnumerator();
181181
}
182182

183-
/// <sinheritdoc/>
183+
/// <inheritdoc/>
184184
IEnumerator IEnumerable.GetEnumerator()
185185
{
186186
return ((IEnumerable)AsImmutableArray()).GetEnumerator();

0 commit comments

Comments
 (0)