From f8c24ea6511a61b4bd624b443513fe58868549ff Mon Sep 17 00:00:00 2001 From: Sarthak Sahu <53469278+SarthakSahu1009@users.noreply.github.com> Date: Wed, 21 Oct 2020 02:43:40 +0530 Subject: [PATCH] Update math/fibonacci_sum.cpp Co-authored-by: David Leal --- math/fibonacci_sum.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/math/fibonacci_sum.cpp b/math/fibonacci_sum.cpp index f40bd4341..cdee7a2f6 100644 --- a/math/fibonacci_sum.cpp +++ b/math/fibonacci_sum.cpp @@ -16,7 +16,12 @@ * @namespace math * @brief Mathematical algorithms */ -namespace math{ +namespace math { +/** + * @namespace fibonacci_sum + * @brief Functions for the sum of the Fibonacci Sequence: \f$\mathrm{F}(n) + \mathrm{F}(n+1) + .. + \mathrm{F}(m)\f$ + */ +namespace fibonacci_sum { /** * Function to multiply two matrices