Update src/args.jl

This commit is contained in:
Ian Butterworth 2022-03-27 20:13:39 -04:00 committed by GitHub
parent 340c056671
commit 82ecb57dda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1626,7 +1626,7 @@ function warn_on_unsupported_args(pkg::AbstractBackend, plotattributes)
for k in sort(collect(_to_warn))
push!(already_warned, k)
@warn(
"Keyword argument $k not supported with $pkg. Choose from: $(sort(collect(supported_attrs(pkg))))"
"Keyword argument $k not supported with $pkg. Choose from: $(join(sort(collect(supported_attrs(pkg))), ", "))"
)
end
end