Skip to content

Commit

Permalink
orography show bug
Browse files Browse the repository at this point in the history
  • Loading branch information
milankl committed Sep 12, 2023
1 parent 40a06c5 commit 5fa817d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dynamics/orography.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ function NoOrography(spectral_grid::SpectralGrid)
end

function Base.show(io::IO,orog::AbstractOrography)
println(io,"$(typeof(IC)) <: AbstractOrography")
keys = propertynames(IC)
print_fields(io,IC,keys)
println(io,"$(typeof(orog)) <: AbstractOrography")
keys = propertynames(orog)
print_fields(io,orog,keys)
end

# no further initialization needed
Expand Down

0 comments on commit 5fa817d

Please sign in to comment.