Skip to content

Commit bc1283f

Browse files
committed
Switch to single quotes
1 parent dfb69f1 commit bc1283f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/01_Shapes_And_Color/01_Color.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function setup() {
2525
// CSS color name
2626
// For a list of available color names see:
2727
// https://www.w3.org/wiki/CSS/Properties/color/keywords
28-
background("steelblue");
28+
background('steelblue');
2929

3030
// Set width of stroke to 4 units
3131
strokeWeight(4);
@@ -100,7 +100,7 @@ function setup() {
100100
// Hex string
101101
// This is a set of red, green, blue values
102102
// Encoded in base 16
103-
stroke("#EFD8D8");
103+
stroke('#EFD8D8');
104104

105105
// Draw without inner color
106106
noFill();

0 commit comments

Comments
 (0)