From f56bcf86efa88a7e0068aceee73925d7acf82a3d Mon Sep 17 00:00:00 2001 From: Bensuperpc Date: Sun, 29 Aug 2021 17:14:10 +0200 Subject: [PATCH] Update math/inv_sqrt.cpp Co-authored-by: David Leal --- math/inv_sqrt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/math/inv_sqrt.cpp b/math/inv_sqrt.cpp index 2d34005c5..fa0f82942 100644 --- a/math/inv_sqrt.cpp +++ b/math/inv_sqrt.cpp @@ -43,8 +43,8 @@ inline T Fast_InvSqrt(T x) { /** * @brief This is the function that calculates the fast inverse square root. * The following code is the fast inverse square root with standard lib (cmath) - * More info: - * https://www.linkedin.com/pulse/fast-inverse-square-root-still-armin-kassemi-langroodi + * More information can be found at + * [LinkedIn](https://www.linkedin.com/pulse/fast-inverse-square-root-still-armin-kassemi-langroodi) * @tparam T floating type * @param x value to calculate * @return T return inverse square root