Skip to content

Commit

Permalink
Fix doxygen warning
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilyBourne committed Dec 8, 2023
1 parent 5cc7c94 commit 2f5e5f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci_tools/readme_to_doxygen.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def format_equations(line, start_tag, end_tag, start_replace, end_replace, conte
if line.startswith('##') and line[2] != '#':
sec_title = line[2:].strip()
sec_tag = get_compatible_tag(sec_title)
line = f"\n@section {sec_tag} {sec_title}\n"
line = f"\n@section {tag}__{sec_tag} {sec_title}\n"
else:
# Replace inline math with Doxygen tag
line, _ = format_equations(line, single_math_tag, single_math_tag, "@f$", "@f$")
Expand Down
2 changes: 1 addition & 1 deletion src/interpolation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Interpolation by a spline interpolating function is implemented in the class Spl

In order for the interpolation to function correctly the values $f_j=f(x_j)$ provided must be located at the points $x_j$ identified as the spline interpolation points.

The spline interpolation method is based entirely on the SplineBuilder and SplineEvaluator classes which are found in @ref sll.
The spline interpolation method is based entirely on the SplineBuilder and SplineEvaluator classes which are found in [sll](../../vendor/sll).

## Memory concerns

Expand Down

0 comments on commit 2f5e5f7

Please sign in to comment.