Skip to content

Commit 66a149a

Browse files
committed
Fixing spacing
1 parent 2044390 commit 66a149a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Scene/Expression.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ define([
148148
if (typeof x === 'number' && typeof y === 'number') {
149149
return x * y;
150150
} else if (x instanceof Cartesian2 && y instanceof Cartesian2) {
151-
return Cartesian2.dot(x ,y);
151+
return Cartesian2.dot(x, y);
152152
} else if (x instanceof Cartesian3 && y instanceof Cartesian3) {
153153
return Cartesian3.dot(x, y);
154154
} else if (x instanceof Cartesian4 && y instanceof Cartesian4) {

0 commit comments

Comments
 (0)