From b973e335b0fb47d2ed6b8fe1f55e2be8e36d4411 Mon Sep 17 00:00:00 2001 From: Joshua Lampert <51029046+JoshuaLampert@users.noreply.github.com> Date: Tue, 20 Aug 2024 14:30:24 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- docs/make.jl | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 7cc968de..8d2ccfc6 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -5,10 +5,12 @@ using Changelog: Changelog # Dynamically set all files in subdirectories of the source directory to include all files in these subdirectories # This way they don't need to be listed explicitly -EQUATIONS_FILES = joinpath.(Ref("equations"), readdir(joinpath(dirname(@__DIR__), "src", - "equations"))) -CALLBACKS_STEP_FILES = joinpath.(Ref("callbacks_step"), readdir(joinpath(dirname(@__DIR__), "src", - "callbacks_step"))) +EQUATIONS_FILES = joinpath.(Ref("equations"), + readdir(joinpath(dirname(@__DIR__), "src", + "equations"))) +CALLBACKS_STEP_FILES = joinpath.(Ref("callbacks_step"), + readdir(joinpath(dirname(@__DIR__), "src", + "callbacks_step"))) # Define module-wide setups such that the respective modules are available in doctests DocMeta.setdocmeta!(DispersiveShallowWater, :DocTestSetup, :(using DispersiveShallowWater);