Skip to content

Commit

Permalink
Fixed typo in docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
LudwigBoess committed Jul 21, 2020
1 parent 844e2ab commit f7697cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/bsplines.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ end
"""
kernel_value_2D(kernel::Cubic, u::Real, h_inv::Real)
Evaluate cubic spline at position ``u = \frac{x}{h}``.
Evaluate cubic spline at position ``u = \\frac{x}{h}``.
"""
@inline function kernel_value_2D(kernel::Cubic, u::Real, h_inv::Real)

Expand Down Expand Up @@ -64,7 +64,7 @@ end
"""
kernel_value_3D(kernel::Cubic, u::Real, h_inv::Real)
Evaluate cubic spline at position ``u = \frac{x}{h}``.
Evaluate cubic spline at position ``u = \\frac{x}{h}``.
"""
@inline function kernel_value_3D(kernel::Cubic, u::Real, h_inv::Real)

Expand Down Expand Up @@ -126,7 +126,7 @@ end
"""
kernel_value_2D(kernel::Quintic, u::Real, h_inv::Real)
Evaluate quintic spline at position ``u = \frac{x}{h}``.
Evaluate quintic spline at position ``u = \\frac{x}{h}``.
"""
@inline function kernel_value_2D(kernel::Quintic, u::Real, h_inv::Real)

Expand Down Expand Up @@ -180,7 +180,7 @@ end
"""
kernel_value_3D(kernel::Quintic, u::Real, h_inv::Real)
Evaluate quintic spline at position ``u = \frac{x}{h}``.
Evaluate quintic spline at position ``u = \\frac{x}{h}``.
"""
@inline function kernel_value_3D(kernel::Quintic, u::Real, h_inv::Real)

Expand Down
6 changes: 3 additions & 3 deletions src/wendland.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ end
"""
kernel_value_2D(kernel::WendlandC4, u::Real, h_inv::Real)
Evaluate WendlandC4 spline at position ``u = \frac{x}{h}``.
Evaluate WendlandC4 spline at position ``u = \\frac{x}{h}``.
"""
@inline function kernel_value_2D(kernel::WendlandC4, u::Real, h_inv::Real)

Expand Down Expand Up @@ -57,7 +57,7 @@ end
"""
kernel_value_3D(kernel::WendlandC4, u::Real, h_inv::Real)
Evaluate WendlandC4 spline at position ``u = \frac{x}{h}``.
Evaluate WendlandC4 spline at position ``u = \\frac{x}{h}``.
"""
@inline function kernel_value_3D(kernel::WendlandC4, u::Real, h_inv::Real)

Expand Down Expand Up @@ -113,7 +113,7 @@ end
"""
kernel_value_2D(kernel::WendlandC6, u::Real, h_inv::Real)
Evaluate WendlandC6 spline at position ``u = \frac{x}{h}``.
Evaluate WendlandC6 spline at position ``u = \\frac{x}{h}``.
"""
@inline function kernel_value_2D(kernel::WendlandC6, u::Real, h_inv::Real)

Expand Down

0 comments on commit f7697cd

Please sign in to comment.