Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ../doxygen
git checkout 26b5403
cd -
cmake -S ../doxygen -B ../doxygen/build -G Ninja
sudo ninja -C ../doxygen/build install

Expand Down
2 changes: 1 addition & 1 deletion src/common/m_helper.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Loading