From 25043bbcde5ef40da1ea1c111baf37d2b2c558f6 Mon Sep 17 00:00:00 2001 From: Syntriax Date: Tue, 18 Mar 2025 22:10:59 +0300 Subject: [PATCH] docs: fixed typo on Vector3D --- Engine.Core/Primitives/Vector3D.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine.Core/Primitives/Vector3D.cs b/Engine.Core/Primitives/Vector3D.cs index 6b57ef5..7078c11 100644 --- a/Engine.Core/Primitives/Vector3D.cs +++ b/Engine.Core/Primitives/Vector3D.cs @@ -25,7 +25,7 @@ public readonly struct Vector3D(float x, float y, float z) public readonly float Y = y; /// - /// The Y coordinate of the . + /// The Z coordinate of the . /// public readonly float Z = z;