@@ -61,7 +61,7 @@ namespace Microsoft.Toolkit.HighPerformance.Memory
6161 /// <exception cref="ArgumentException">
6262 /// Thrown when either <paramref name="height"/> or <paramref name="width"/> are invalid.
6363 /// </exception>
64- /// <remarks>The total area must match the lenght of <paramref name="text"/>.</remarks>
64+ /// <remarks>The total area must match the length of <paramref name="text"/>.</remarks>
6565 public ReadOnlyMemory2D ( string text , int height , int width )
6666 : this ( text , 0 , height , width , 0 )
6767 {
@@ -128,7 +128,7 @@ public ReadOnlyMemory2D(string text, int offset, int height, int width, int pitc
128128 /// <exception cref="ArgumentException">
129129 /// Thrown when either <paramref name="height"/> or <paramref name="width"/> are invalid.
130130 /// </exception>
131- /// <remarks>The total area must match the lenght of <paramref name="array"/>.</remarks>
131+ /// <remarks>The total area must match the length of <paramref name="array"/>.</remarks>
132132 public ReadOnlyMemory2D ( T [ ] array , int height , int width )
133133 : this ( array , 0 , height , width , 0 )
134134 {
@@ -341,7 +341,7 @@ public ReadOnlyMemory2D(T[,,] array, int depth, int row, int column, int height,
341341 /// <exception cref="ArgumentException">
342342 /// Thrown when either <paramref name="height"/> or <paramref name="width"/> are invalid.
343343 /// </exception>
344- /// <remarks>The total area must match the lenght of <paramref name="memoryManager"/>.</remarks>
344+ /// <remarks>The total area must match the length of <paramref name="memoryManager"/>.</remarks>
345345 public ReadOnlyMemory2D ( MemoryManager < T > memoryManager , int height , int width )
346346 : this ( memoryManager , 0 , height , width , 0 )
347347 {
@@ -417,7 +417,7 @@ public ReadOnlyMemory2D(MemoryManager<T> memoryManager, int offset, int height,
417417 /// <exception cref="ArgumentException">
418418 /// Thrown when either <paramref name="height"/> or <paramref name="width"/> are invalid.
419419 /// </exception>
420- /// <remarks>The total area must match the lenght of <paramref name="memory"/>.</remarks>
420+ /// <remarks>The total area must match the length of <paramref name="memory"/>.</remarks>
421421 internal ReadOnlyMemory2D ( ReadOnlyMemory < T > memory , int height , int width )
422422 : this ( memory , 0 , height , width , 0 )
423423 {
0 commit comments