Skip to content

Commit 71b4ce7

Browse files
committed
bug fix
1 parent d02eccc commit 71b4ce7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dataset/modify.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ function _check_the_output_type(ds::Dataset, ms)
623623
# * AbstractVector{T} where T
624624
# * Vector{T}
625625
# * not a Vector
626-
CT == Union{} && throw(ArgumentError("compiler cannot assess the return type of calling `$(ms.second.first)` on `:$(_names(ds)[ms.first])`, you may want to try using `byrow`"))
626+
CT == Union{} && throw(ArgumentError("compiler cannot assess the return type of calling `$(ms.second.first)` on `:$(_names(ds)[[(ms.first)...]])`, you may want to try using `byrow`"))
627627
if CT <: AbstractVector
628628
if hasproperty(CT, :var)
629629
T = Union{Missing, CT.var.ub}

0 commit comments

Comments
 (0)