Skip to content

Commit

Permalink
Fix show
Browse files Browse the repository at this point in the history
  • Loading branch information
eliascarv committed Oct 18, 2024
1 parent 2c37e09 commit e525302
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/empirical.jl
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function _printvec(io, vec::AbstractArray{<:AbstractArray}, n)
print(io, "│ ├─ ")
_printlnvec(io, vec[i], n)
end
println(io, "├─ ...")
println(io, "")
for i in (len - n + 1):(len - 1)
print(io, "│ ├─ ")
_printlnvec(io, vec[i], n)
Expand Down
2 changes: 1 addition & 1 deletion test/empirical.jl
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ end
│ ├─ [0.0, 0.0, 0.0, ..., 0.0, 0.0, 0.107143]
│ ├─ [0.0, 0.0, 0.0, ..., 0.0, 0.0869565, 0.103448]
│ ├─ [0.0, 0.0, 0.0, ..., 0.130435, 0.0909091, 0.142857]
├─ ...
│ ├─ [0.0, 0.0, 0.0, ..., 0.0555556, 0.166667, 0.0833333]
│ ├─ [0.0, 0.0, 0.0, ..., 0.125, 0.208333, 0.1]
│ └─ [0.0, 0.0, 0.0, ..., 0.130435, 0.0833333, 0.0909091]
Expand Down

0 comments on commit e525302

Please sign in to comment.