Skip to content

Commit 5857e5a

Browse files
committed
Fix deprecated Varargs syntax
1 parent e17d2f5 commit 5857e5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ rpad(ch::Chr, cnt::Integer, pad::AbstractChar=' ') =
6363
(cnt -= 1) <= 0 ? string(ch) : string(ch, pad^cnt)
6464

6565
const SetOfChars =
66-
Union{Tuple{Vararg{<:AbstractChar}},AbstractVector{<:AbstractChar},Set{<:AbstractChar}}
66+
Union{Tuple{Vararg{AbstractChar}},AbstractVector{<:AbstractChar},Set{<:AbstractChar}}
6767

6868
function __split(str, splitter, limit::Integer, keep_empty::Bool, strs::Vector)
6969
pos = 1

0 commit comments

Comments
 (0)