changeset 1711:84aed3abab94

Minor documentation fixed to laplace.jl
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 05 Sep 2024 08:36:11 +0200
parents 74f051444e0e
children b42a38900c9d
files src/SbpOperators/volumeops/laplace/laplace.jl
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/SbpOperators/volumeops/laplace/laplace.jl	Tue Sep 03 23:51:34 2024 +0200
+++ b/src/SbpOperators/volumeops/laplace/laplace.jl	Thu Sep 05 08:36:11 2024 +0200
@@ -60,7 +60,7 @@
 condition. `H_tuning` and `R_tuning` are used to specify the strength of the
 penalty.
 
-See also: [`sat`](@ref),[`DirichletCondition`](@ref), [`positivity_decomposition`](@ref).
+See also: [`sat`](@ref), [`DirichletCondition`](@ref), [`positivity_decomposition`](@ref).
 """
 function sat_tensors(Δ::Laplace, g::Grid, bc::DirichletCondition; H_tuning = 1., R_tuning = 1.)
     id = boundary(bc)
@@ -102,7 +102,7 @@
 to form a symmetric and energy stable penalty for a Dirichlet condition. The
 parameters `H_tuning` and `R_tuning` are used to specify the strength of the
 penalty and must be greater than 1. For details we refer to
-https://doi.org/10.1016/j.jcp.2020.109294
+<https://doi.org/10.1016/j.jcp.2020.109294>
 """
 function positivity_decomposition(Δ::Laplace, g::Grid, bc::DirichletCondition; H_tuning, R_tuning)
     @assert(H_tuning ≥ 1.)