Skip to content

Commit a3f2b1e

Browse files
committed
Style guide corrections:
- Switch from double to single quotes - Combine concatenated strings into one
1 parent 81ba273 commit a3f2b1e

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

examples/curated/33_Geometries.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
let astronaut;
1616

1717
function preload() {
18-
astronaut = loadModel("assets/astronaut.obj");
18+
astronaut = loadModel('assets/astronaut.obj');
1919
}
2020

2121
function setup() {
@@ -28,9 +28,7 @@ function setup() {
2828
normalMaterial();
2929

3030
describe(
31-
"Eight 3D shapes: a plane, box, cylinder, cone, torus, sphere, " +
32-
"ellipsoid, and a model of an astronaut. Each shape is rotating in " +
33-
"all directions. The surface of the shapes are multicolored."
31+
'Eight 3D shapes: a plane, box, cylinder, cone, torus, sphere, ellipsoid, and a model of an astronaut. Each shape is rotating in all directions. The surface of the shapes are multicolored.'
3432
);
3533
}
3634

0 commit comments

Comments
 (0)