-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docs inconsistent on string interpolation of arrays #7438
Comments
_ _ ()_ | A fresh approach to technical computing julia> v = [1,2,3] julia> "v: $v" Looks like a regression, old behaviour matches The question is which is best/more consistent? |
The new output is better. We should update the docs. |
Judging by the last commit that touched this line (b995da5), will doctest catch this kind of thing automatically? |
I would think that it should, but it seems like nobody is currently running doctest on a regular basis. @nolta |
Someone brought this up on IRC the other day, see this line:
I'm not sure whether this is a regression, or just a change relative to what the docs say (
"v: 1\n2\n3\n"
).The text was updated successfully, but these errors were encountered: