Skip to content

Commit

Permalink
use singleQuote
Browse files Browse the repository at this point in the history
use singleQuote
  • Loading branch information
inaridarkfox4231 authored Jun 20, 2023
1 parent 140c967 commit c0caa7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/math/p5.Vector.js
Original file line number Diff line number Diff line change
Expand Up @@ -1814,11 +1814,11 @@ p5.Vector = class {
* const vSlerpZX = p5.Vector.slerp(vz, vx, t);
* strokeWeight(6);
* strokeCap(SQUARE);
* stroke("red");
* stroke('red');
* line(0, 0, 0, vSlerpXY.x, vSlerpXY.y, vSlerpXY.z);
* stroke("green");
* stroke('green');
* line(0, 0, 0, vSlerpYZ.x, vSlerpYZ.y, vSlerpYZ.z);
* stroke("blue");
* stroke('blue');
* line(0, 0, 0, vSlerpZX.x, vSlerpZX.y, vSlerpZX.z);
* }
* </code>
Expand Down

0 comments on commit c0caa7a

Please sign in to comment.