From 314e94b692fe6c5df1de703527c8774a473526b7 Mon Sep 17 00:00:00 2001 From: ZA139 <40553487+ZA139@users.noreply.github.com> Date: Mon, 10 Oct 2022 09:29:52 +0800 Subject: [PATCH] Fix the typo though of dtVperp2D function comment fix typo though --- Detour/Include/DetourCommon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Detour/Include/DetourCommon.h b/Detour/Include/DetourCommon.h index d578ebe..9d247fe 100644 --- a/Detour/Include/DetourCommon.h +++ b/Detour/Include/DetourCommon.h @@ -319,7 +319,7 @@ inline float dtVdot2D(const float* u, const float* v) /// Derives the xz-plane 2D perp product of the two vectors. (uz*vx - ux*vz) /// @param[in] u The LHV vector [(x, y, z)] /// @param[in] v The RHV vector [(x, y, z)] -/// @return The prep dot product on the xz-plane. +/// @return The perp dot product on the xz-plane. /// /// The vectors are projected onto the xz-plane, so the y-values are ignored. inline float dtVperp2D(const float* u, const float* v)