Skip to content

Commit

Permalink
Fix mouseX and mouseY examples
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmcintyre committed Apr 4, 2024
1 parent 42d0d01 commit 1adc157
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/events/mouse.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ p5.prototype._hasMouseInteracted = false;
*
* // Load a font for WebGL mode.
* function preload() {
* font = loadFont('assets/Inconsolata.otf');
* font = loadFont('assets/inconsolata.otf');
* }
*
* function setup() {
Expand Down Expand Up @@ -300,7 +300,7 @@ p5.prototype.mouseX = 0;
*
* // Load a font for WebGL mode.
* function preload() {
* font = loadFont('assets/Inconsolata.otf');
* font = loadFont('assets/inconsolata.otf');
* }
*
* function setup() {
Expand Down

0 comments on commit 1adc157

Please sign in to comment.