@@ -945,7 +945,7 @@ function dom(p5, fn){
945
945
*
946
946
* // Create a checkbox and place it beneath the canvas.
947
947
* checkbox = createCheckbox();
948
- * checkbox.position(0, 100 );
948
+ * checkbox.position(0, 70 );
949
949
*
950
950
* describe('A black square with a checkbox beneath it. The square turns white when the box is checked.');
951
951
* }
@@ -971,7 +971,7 @@ function dom(p5, fn){
971
971
* // Create a checkbox and place it beneath the canvas.
972
972
* // Label the checkbox "white".
973
973
* checkbox = createCheckbox(' white');
974
- * checkbox.position(0, 100 );
974
+ * checkbox.position(0, 70 );
975
975
*
976
976
* describe('A black square with a checkbox labeled "white" beneath it. The square turns white when the box is checked.');
977
977
* }
@@ -997,7 +997,7 @@ function dom(p5, fn){
997
997
* // Create a checkbox and place it beneath the canvas.
998
998
* // Label the checkbox "white" and set its value to true.
999
999
* checkbox = createCheckbox(' white', true);
1000
- * checkbox.position(0, 100 );
1000
+ * checkbox.position(0, 70 );
1001
1001
*
1002
1002
* describe('A white square with a checkbox labeled "white" beneath it. The square turns black when the box is unchecked.');
1003
1003
* }
0 commit comments