From 06960c4eac3eb7893bf3e2a10b3632cd986f807a Mon Sep 17 00:00:00 2001 From: pie999 Date: Fri, 16 Feb 2024 13:15:06 +0100 Subject: [PATCH] Fix mistake in rotate() documentation --- src/math/p5.Vector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/p5.Vector.js b/src/math/p5.Vector.js index 2ccb5fc4f5..c7ba2fff3a 100644 --- a/src/math/p5.Vector.js +++ b/src/math/p5.Vector.js @@ -1766,7 +1766,7 @@ p5.Vector = class { * * drawArrow(v0, v1, 'black'); * - * describe('A black arrow extends from the center of a gray square. The arrow rotates counterclockwise.'); + * describe('A black arrow extends from the center of a gray square. The arrow rotates clockwise.'); * } * * function drawArrow(base, vec, myColor) {