docs: fixed typo on Vector3D

This commit is contained in:
Syntriax 2025-03-18 22:10:59 +03:00
parent 183966d239
commit 25043bbcde

View File

@ -25,7 +25,7 @@ public readonly struct Vector3D(float x, float y, float z)
public readonly float Y = y; public readonly float Y = y;
/// <summary> /// <summary>
/// The Y coordinate of the <see cref="Vector3D"/>. /// The Z coordinate of the <see cref="Vector3D"/>.
/// </summary> /// </summary>
public readonly float Z = z; public readonly float Z = z;