From e1b1c71e7cca268c9fbad41d2d6b315ff63b9756 Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Thu, 25 Jun 2020 14:40:47 -0400 Subject: [PATCH] Apply suggestions from code review Co-authored-by: David Leal --- math/double_factorial.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/math/double_factorial.cpp b/math/double_factorial.cpp index a400ae147..db22cc672 100644 --- a/math/double_factorial.cpp +++ b/math/double_factorial.cpp @@ -61,5 +61,10 @@ void tests() { std::cout << "passed\n"; } -/// main function -int main() { tests(); } +/** + * Main function + */ +int main() { + tests(); + return 0; +}