From 26933d670ab445fc7a3814afd0ce70e09ada1cdf Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Thu, 20 Mar 2025 00:18:01 -0400 Subject: [PATCH 1/3] Update m_helper.fpp --- src/common/m_helper.fpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/m_helper.fpp b/src/common/m_helper.fpp index 4c8edccfc5..aab6855a37 100644 --- a/src/common/m_helper.fpp +++ b/src/common/m_helper.fpp @@ -559,7 +559,7 @@ contains end function double_factorial !> The following function calculates the factorial value of an integer - !! @paaram n is the input integer + !! @param n is the input integer !! @return R is the factorial value of n recursive function factorial(n) result(R) From 86037e0a9fbed1f6abbd741ebc627427de86c4eb Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Thu, 20 Mar 2025 00:37:07 -0400 Subject: [PATCH 2/3] Update docs.yml --- .github/workflows/docs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index bc138708c0..c8020c6d55 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -22,6 +22,9 @@ jobs: sudo apt update -y sudo apt install -y cmake ninja-build graphviz graphviz git clone https://github.com/doxygen/doxygen.git ../doxygen + cd .. + git checkout 26b5403 + cd - cmake -S ../doxygen -B ../doxygen/build -G Ninja sudo ninja -C ../doxygen/build install From d2696e96c47fb0ad6a46743702e32fcaf8a5b085 Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Thu, 20 Mar 2025 00:39:37 -0400 Subject: [PATCH 3/3] Update docs.yml --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index c8020c6d55..d161d80342 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -22,7 +22,7 @@ jobs: sudo apt update -y sudo apt install -y cmake ninja-build graphviz graphviz git clone https://github.com/doxygen/doxygen.git ../doxygen - cd .. + cd ../doxygen git checkout 26b5403 cd - cmake -S ../doxygen -B ../doxygen/build -G Ninja