File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -250,21 +250,21 @@ p5.prototype.matchAll = function(str, reg) {
250
250
*
251
251
* // Display the number as a string.
252
252
* let formatted = nf(number);
253
- * text(formatted, 20, 25 );
253
+ * text(formatted, 20, 20 );
254
254
*
255
255
* let negative = nf(-number, 4, 2);
256
- * text(negative, 20, 37 );
256
+ * text(negative, 20, 40 );
257
257
*
258
258
* // Display the number with four digits
259
259
* // to the left of the decimal.
260
260
* let left = nf(number, 4);
261
- * text(left, 20, 50 );
261
+ * text(left, 20, 60 );
262
262
*
263
263
* // Display the number with four digits
264
264
* // to the left of the decimal and one
265
265
* // to the right.
266
266
* let right = nf(number, 4, 1);
267
- * text(right, 20, 75 );
267
+ * text(right, 20, 80 );
268
268
*
269
269
* describe(
270
270
* 'The numbers "123.45", "0123.45", and "0123.5" written on three separate lines. The text is in black on a gray background.'
You can’t perform that action at this time.
0 commit comments