Skip to content

Commit ecd1711

Browse files
Mike TreitSergio0694
Mike Treit
authored andcommitted
Fix minor typos in comments.
1 parent b0d6c4f commit ecd1711

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CommunityToolkit.Mvvm.SourceGenerators/Helpers/EquatableArray{T}.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static EquatableArray<T> AsEquatableArray<T>(this ImmutableArray<T> array
3131
}
3232

3333
/// <summary>
34-
/// An imutable, equatable array. This is equivalent to <see cref="ImmutableArray{T}"/> but with value equality support.
34+
/// An immutable, equatable array. This is equivalent to <see cref="ImmutableArray{T}"/> but with value equality support.
3535
/// </summary>
3636
/// <typeparam name="T">The type of values in the array.</typeparam>
3737
internal readonly struct EquatableArray<T> : IEquatable<EquatableArray<T>>, IEnumerable<T>
@@ -131,7 +131,7 @@ public ReadOnlySpan<T> AsSpan()
131131
}
132132

133133
/// <summary>
134-
/// Copies the contents of this <see cref="EquatableArray{T}"/> instance. to a mutable array.
134+
/// Copies the contents of this <see cref="EquatableArray{T}"/> instance to a mutable array.
135135
/// </summary>
136136
/// <returns>The newly instantiated array.</returns>
137137
public T[] ToArray()

0 commit comments

Comments
 (0)