fix error in docs example (missing comma) - fixes #1840

This commit is contained in:
Becky Gilbert 2021-05-19 14:41:08 -07:00
parent b528c4663f
commit 316aa679fc

View File

@ -49,7 +49,7 @@ var circle_1 = {
filledCirc(c, 100, 'blue'); filledCirc(c, 100, 'blue');
}, },
choices: ['Red', 'Green', 'Blue'], choices: ['Red', 'Green', 'Blue'],
prompt: '<p>What color is the circle?</p>' prompt: '<p>What color is the circle?</p>',
data: {color: 'blue', radius: 100} data: {color: 'blue', radius: 100}
}; };