From fd1567b12fde8ff5106ac440a4c52b4c06996ebb Mon Sep 17 00:00:00 2001
From: Michael <reinstein.mike@gmail.com>
Date: Mon, 18 Nov 2024 22:00:45 -0800
Subject: [PATCH] Update vec2-impl.ts

`transformMat3` has the wrong description
---
 src/vec2-impl.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/vec2-impl.ts b/src/vec2-impl.ts
index 474b8e9..24565a9 100644
--- a/src/vec2-impl.ts
+++ b/src/vec2-impl.ts
@@ -640,7 +640,7 @@ function zero<T extends Vec2Arg = VecType>(dst?: T) {
 
 
 /**
- * transform Vec2 by 4x4 matrix
+ * Transform Vec2 by 4x4 matrix
  * @param v - the vector
  * @param m - The matrix.
  * @param dst - optional Vec2 to store result. If not passed a new one is created.
@@ -659,7 +659,7 @@ function transformMat4<T extends Vec2Arg = VecType>(v: Vec2Arg, m: Mat4Arg, dst?
 }
 
 /**
- * Transforms vec4 by 3x3 matrix
+ * Transform Vec2 by 3x3 matrix
  *
  * @param v - the vector
  * @param m - The matrix.