Skip to content

Commit de17778

Browse files
authored
Merge pull request #5411 from changeworld/patch-2
Fix typo: multidimension -> multidimensional
2 parents 6a68fee + e254c95 commit de17778

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/dotnet/how-to-use-arrays-in-cpp-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ public:
221221
};
222222

223223
int main() {
224-
// Aggregate initialize a multidimension managed array.
224+
// Aggregate initialize a multidimensional managed array.
225225
array<String^, 2>^ gc1 = gcnew array<String^, 2>{ {"one", "two"},
226226
{"three", "four"} };
227227
array<String^, 2>^ gc2 = { {"one", "two"}, {"three", "four"} };

0 commit comments

Comments
 (0)