Skip to content

Commit dc93b7a

Browse files
authored
Update Deprecated.jl
1 parent 588a1c0 commit dc93b7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Deprecated.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
import Base: *
1111

1212
# FIXME remove! is it really needed? This is type piracy
13-
function *(a::Symbol, b::AbstractString)::Symbol =
14-
@warn "product * on ::Symbol ::String has been deprecated, please use Symbol(\"$(a)$(b)\") directly"
13+
function *(a::Symbol, b::AbstractString)
14+
@warn "product * on ::Symbol ::String has been deprecated, please use Symbol(string(a,b)) directly"
1515
Symbol(string(a,b))
1616
end
1717

0 commit comments

Comments
 (0)