Skip to content

Commit 1adc157

Browse files
committed
Fix mouseX and mouseY examples
1 parent 42d0d01 commit 1adc157

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/events/mouse.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ p5.prototype._hasMouseInteracted = false;
189189
*
190190
* // Load a font for WebGL mode.
191191
* function preload() {
192-
* font = loadFont('assets/Inconsolata.otf');
192+
* font = loadFont('assets/inconsolata.otf');
193193
* }
194194
*
195195
* function setup() {
@@ -300,7 +300,7 @@ p5.prototype.mouseX = 0;
300300
*
301301
* // Load a font for WebGL mode.
302302
* function preload() {
303-
* font = loadFont('assets/Inconsolata.otf');
303+
* font = loadFont('assets/inconsolata.otf');
304304
* }
305305
*
306306
* function setup() {

0 commit comments

Comments
 (0)