Skip to content

Commit d99eb77

Browse files
authored
Update DotnetExtensions.cs
1 parent f4883d9 commit d99eb77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Implementation/src/DotnetExtensions/DotnetExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ public static void Print(this Array arr, TextWriter output = null, ArrayConventi
128128
{
129129
if((loc[dim - 1] + 1) != arr.GetLength(dim - 1))
130130
{
131+
str += ',';
131132
for(int j = 0; j < (arr.Rank - dim); ++j)
132133
{
133-
str += ',';
134134
str += Environment.NewLine;
135135
}
136136
}
@@ -200,4 +200,4 @@ public static unsafe void frombytes(this Array arr, byte[] buffer)
200200

201201
}
202202

203-
}
203+
}

0 commit comments

Comments
 (0)