Skip to content

Commit

Permalink
Merge pull request #5676 from eltociear/patch-6
Browse files Browse the repository at this point in the history
Fix typo in p5.RendererGL.Immediate.js
  • Loading branch information
limzykenneth authored May 15, 2022
2 parents 6e2303c + fdf1199 commit 1d406fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webgl/p5.RendererGL.Immediate.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ p5.RendererGL.prototype.beginShape = function(mode) {
p5.RendererGL.prototype.vertex = function(x, y) {
let z, u, v;

// default to (x, y) mode: all other arugments assumed to be 0.
// default to (x, y) mode: all other arguments assumed to be 0.
z = u = v = 0;

if (arguments.length === 3) {
Expand Down

0 comments on commit 1d406fc

Please sign in to comment.