From 2683b9d6ede5176b01f22bfe483be6579d6c7533 Mon Sep 17 00:00:00 2001 From: Krishna Vedala Date: Thu, 28 May 2020 16:43:03 -0400 Subject: [PATCH] fix happy number code and documetnation --- others/happy_number.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/others/happy_number.cpp b/others/happy_number.cpp index dacb2b8c4..b1debaa54 100644 --- a/others/happy_number.cpp +++ b/others/happy_number.cpp @@ -1,7 +1,7 @@ /** - * A [happy number](https://en.wikipedia.org/wiki/Happy_number) is a decimal - * number whose sum of digits is calculated until the sum is a single digit, and - * this sum turns out to be 1. + * @file + * @brief A happy number is a number whose sum of digits is calculated until the + * sum is a single digit, and this sum turns out to be 1 */ #include