Skip to content

Commit 465b313

Browse files
Correct typo error (#45529)
Under Multidimensional arrays, the third sentence of the first paragraph contain multiple occurrence of the word 'have'. I simply removed one of these occurrence.
1 parent 226ccbb commit 465b313

File tree

1 file changed

+1
-1
lines changed
  • docs/csharp/language-reference/builtin-types

1 file changed

+1
-1
lines changed

docs/csharp/language-reference/builtin-types/arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ You can pass an initialized single-dimensional array to a method. In the followi
8585
8686
## Multidimensional arrays
8787
88-
Arrays can have more than one dimension. For example, the following declarations create four arrays. Two arrays have have two dimensions. Two arrays have three dimensions. The first two declarations declare the length of each dimension, but don't initialize the values of the array. The second two declarations use an initializer to set the values of each element in the multidimensional array.
88+
Arrays can have more than one dimension. For example, the following declarations create four arrays. Two arrays have two dimensions. Two arrays have three dimensions. The first two declarations declare the length of each dimension, but don't initialize the values of the array. The second two declarations use an initializer to set the values of each element in the multidimensional array.
8989
9090
:::code language="csharp" source="./snippets/shared/Arrays.cs" id="MultiDimensionalArrayDeclaration":::
9191

0 commit comments

Comments
 (0)