Skip to content

Commit

Permalink
doc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sloisel committed Sep 20, 2024
1 parent cd0dbea commit 64bc0e6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/fem1d.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export fem1d, FEM1D, fem1d_solve

" abstract type FEM1D end"
abstract type FEM1D end

" amg_dim(::Type{FEM1D}) = 1"
Expand Down
1 change: 1 addition & 0 deletions src/fem2d.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export fem2d, FEM2D, fem2d_solve

" abstract type FEM2D end"
abstract type FEM2D end

" fem2d_solve(::Type{T}=Float64;rest...) where {T} = amg_solve(T;method=FEM2D,rest...)"
Expand Down
1 change: 1 addition & 0 deletions src/spectral1d.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export spectral1d, SPECTRAL1D, spectral1d_solve

" abstract type SPECTRAL1D end"
abstract type SPECTRAL1D end

" amg_dim(::Type{SPECTRAL1D}) = 1"
Expand Down
1 change: 1 addition & 0 deletions src/spectral2d.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export spectral2d, SPECTRAL2D, spectral2d_solve

" abstract type SPECTRAL2D end"
abstract type SPECTRAL2D end

" spectral2d_solve(::Type{T}=Float64;rest...) where {T} = amg_solve(T;method=SPECTRAL2D,rest...)"
Expand Down

0 comments on commit 64bc0e6

Please sign in to comment.