From 2887791109e53beb0f05564ed0c76173aa3e6cd2 Mon Sep 17 00:00:00 2001 From: Corwin Date: Wed, 15 May 2024 22:32:28 +0100 Subject: [PATCH] clarify it's only the z component --- agb-fixnum/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agb-fixnum/src/lib.rs b/agb-fixnum/src/lib.rs index e9f427b6..d61852ae 100644 --- a/agb-fixnum/src/lib.rs +++ b/agb-fixnum/src/lib.rs @@ -1142,7 +1142,7 @@ impl Vector2D { /// let dot = v1.cross(v2); /// assert_eq!(dot, -2); /// ``` - /// The cross product for vectors *A* and *B* is defined as + /// The *z* component cross product for vectors *A* and *B* is defined as /// > *A**x* × *B**y* - *A**y* × *B**x*. /// ///