Skip to content

Commit 89fdd0a

Browse files
authored
Merge pull request #130 from Avid29/main
Fixed typos in Span2D implicit operators
2 parents 3fc61fe + 94bf93a commit 89fdd0a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CommunityToolkit.HighPerformance/Memory/ReadOnlySpan2D{T}.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,13 +1003,13 @@ public override string ToString()
10031003
}
10041004

10051005
/// <summary>
1006-
/// Implicily converts a given 2D array into a <see cref="ReadOnlySpan2D{T}"/> instance.
1006+
/// Implicitly converts a given 2D array into a <see cref="ReadOnlySpan2D{T}"/> instance.
10071007
/// </summary>
10081008
/// <param name="array">The input 2D array to convert.</param>
10091009
public static implicit operator ReadOnlySpan2D<T>(T[,]? array) => new(array);
10101010

10111011
/// <summary>
1012-
/// Implicily converts a given <see cref="Span2D{T}"/> into a <see cref="ReadOnlySpan2D{T}"/> instance.
1012+
/// Implicitly converts a given <see cref="Span2D{T}"/> into a <see cref="ReadOnlySpan2D{T}"/> instance.
10131013
/// </summary>
10141014
/// <param name="span">The input <see cref="Span2D{T}"/> to convert.</param>
10151015
public static implicit operator ReadOnlySpan2D<T>(Span2D<T> span)

CommunityToolkit.HighPerformance/Memory/Span2D{T}.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ public override string ToString()
11591159
}
11601160

11611161
/// <summary>
1162-
/// Implicily converts a given 2D array into a <see cref="Span2D{T}"/> instance.
1162+
/// Implicitly converts a given 2D array into a <see cref="Span2D{T}"/> instance.
11631163
/// </summary>
11641164
/// <param name="array">The input 2D array to convert.</param>
11651165
public static implicit operator Span2D<T>(T[,]? array) => new(array);

0 commit comments

Comments
 (0)