In Julia 1.1
julia> string(["aaa", "bba"])
2-element Array{String,1}:
"aaa"
"bba"
However, in Julia 1.0
julia> string(["aaa", "bba"])
"[\"aaa\", \"bba\"]"
I didn’t expect there is still such breaking change in Julia 1.1, and I haven’t seen it mentioned in the NEWS.md. Is it a bug or is it intended?