Skip to content

Commit 69d9933

Browse files
Zane D. Purvistonyroberts
authored andcommitted
Add missing ) so sample code in README works
1 parent 11bc13a commit 69d9933

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ static void Main(string[] args)
2020
Console.WriteLine(sin(5));
2121
double c = np.cos(5) + sin(5);
2222
Console.WriteLine(c);
23-
dynamic a = np.array(new List<float> { 1, 2, 3 };
23+
dynamic a = np.array(new List<float> { 1, 2, 3 });
2424
dynamic b = np.array(new List<float> { 6, 5, 4 }, Py.kw("dtype", np.int32));
2525
Console.WriteLine(a.dtype);
2626
Console.WriteLine(b.dtype);

0 commit comments

Comments
 (0)