Skip to content

Commit 9a61eb4

Browse files
vlandaurafaqz
authored andcommitted
print the missingval to IO
the missingval itself vas not being printed to io, leading to funny printing during things like docs building with Documenter.
1 parent e7052d7 commit 9a61eb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/show.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ function DD.show_after(io::IO, mime::MIME"text/plain", A::AbstractRaster)
33

44
if missingval(A) !== nothing
55
printstyled(io, "with missingval: "; color=:light_black)
6-
print(string(missingval(A)), "\n")
6+
print(io, string(missingval(A)), "\n")
77
end
88
if parent(A) isa DiskArrays.AbstractDiskArray
99
if parent(A) isa FileArray

0 commit comments

Comments
 (0)