Skip to content

Commit 9acaae9

Browse files
Println -> print
Co-authored-by: Michael Abbott <32575566+mcabbott@users.noreply.github.com>
1 parent 75094d6 commit 9acaae9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/layers/upsample.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function Base.show(io::IO, u::Upsample{mode}) where {mode}
6262
print(io, ":", mode)
6363
u.scale !== nothing && print(io, ", scale = $(u.scale)")
6464
u.size !== nothing && print(io, ", size = $(u.size)")
65-
println(io, ")")
65+
print(io, ")")
6666
end
6767

6868
"""

0 commit comments

Comments
 (0)