Skip to content

Commit 50222b2

Browse files
committed
add missing braces
Signed-off-by: Jade Abraham <jade.abraham@hpe.com>
1 parent 86f91d7 commit 50222b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

10-heat-2D-stencil.chpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ config const ny = 1000;
99
config const N = 10000;
1010
config const alpha = 0.1;
1111

12-
const omega = stencilDist.createDomain(0..<nx, 0..<ny, fluff=(1, 1)),
12+
const omega = stencilDist.createDomain({0..<nx, 0..<ny}, fluff=(1, 1)),
1313
omegaHat = omega.expand(-1);
1414

1515
var u: [omega] real = 1.0;

0 commit comments

Comments
 (0)