From 9aadf392624d7c49c15aa9a72cc3235cfa84846d Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 17 Jan 2023 23:27:16 -0500 Subject: [PATCH] spelling: another Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- includes/irrKlang/ik_vec3d.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/irrKlang/ik_vec3d.h b/includes/irrKlang/ik_vec3d.h index ce56669..55e62c2 100644 --- a/includes/irrKlang/ik_vec3d.h +++ b/includes/irrKlang/ik_vec3d.h @@ -83,7 +83,7 @@ namespace irrklang return X*other.X + Y*other.Y + Z*other.Z; } - //! Returns distance from an other point. + //! Returns distance from another point. /** Here, the vector is interpreted as point in 3 dimensional space. */ ik_f64 getDistanceFrom(const vec3d& other) const { @@ -91,7 +91,7 @@ namespace irrklang return sqrt(vx*vx + vy*vy + vz*vz); } - //! Returns squared distance from an other point. + //! Returns squared distance from another point. /** Here, the vector is interpreted as point in 3 dimensional space. */ ik_f32 getDistanceFromSQ(const vec3d& other) const {