File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1003,13 +1003,13 @@ public override string ToString()
1003
1003
}
1004
1004
1005
1005
/// <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.
1007
1007
/// </summary>
1008
1008
/// <param name="array">The input 2D array to convert.</param>
1009
1009
public static implicit operator ReadOnlySpan2D< T> ( T[ , ] ? array) => new ( array) ;
1010
1010
1011
1011
/// <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.
1013
1013
/// </summary>
1014
1014
/// <param name="span">The input <see cref="Span2D{T}"/> to convert.</param>
1015
1015
public static implicit operator ReadOnlySpan2D< T> ( Span2D< T> span)
Original file line number Diff line number Diff line change @@ -1159,7 +1159,7 @@ public override string ToString()
1159
1159
}
1160
1160
1161
1161
/// <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.
1163
1163
/// </summary>
1164
1164
/// <param name="array">The input 2D array to convert.</param>
1165
1165
public static implicit operator Span2D < T > ( T [ , ] ? array ) => new ( array) ;
You can’t perform that action at this time.
0 commit comments