File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ First make the following changes to your `loadCSV()` method:
138
138
139
139
``` js
140
140
p5 .prototype .loadCSV = function (filename ){
141
- console .log (` I will load the CSV file ${ filename} at ${ this .hour ()} :${ this .minute } !` );
141
+ console .log (` I will load the CSV file ${ filename} at ${ this .hour ()} :${ this .minute () } !` );
142
142
143
143
let result = [];
144
144
@@ -187,7 +187,7 @@ p5 will need to be told that the addon’s `loadCSV()` function is something it
187
187
188
188
``` js
189
189
p5 .prototype .loadCSV = function (filename ){
190
- console .log (` I will load the CSV file ${ filename} at ${ this .hour ()} :${ this .minute } !` );
190
+ console .log (` I will load the CSV file ${ filename} at ${ this .hour ()} :${ this .minute () } !` );
191
191
192
192
let result = [];
193
193
You can’t perform that action at this time.
0 commit comments