From 768a99c8e6567bafce9529b15abe601ca5a54eaf Mon Sep 17 00:00:00 2001 From: David Leal Date: Thu, 9 Jun 2022 09:56:55 -0500 Subject: [PATCH] Apply suggestions from code review --- math/modular_inverse_simple.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/modular_inverse_simple.cpp b/math/modular_inverse_simple.cpp index 935d525ce..61715d97f 100644 --- a/math/modular_inverse_simple.cpp +++ b/math/modular_inverse_simple.cpp @@ -1,6 +1,6 @@ /** * @file - * @brief simple implementation of modular multiplicative inverse + * @brief Simple implementation of [modular multiplicative inverse](https://en.wikipedia.org/wiki/Modular_multiplicative_inverse) * * @details * this algorithm calculates the modular inverse x^{-1} \mod y iteratively